Google Coraboratory と コマンドプロンプトのpythonの結果の違いについて
以下のコードを入力したのですが、結果が異なります。
なぜでしょうか?
同じ結果にするための解決方法があれば教えてください。
<入力内容>
a = [1,2,3]
b = [4,5,6]
c = [a,b]
print(c)
print(c[0])
print(c[1][2])
<Google Coraboratoryの結果>
TypeError
Traceback (most recent call last)
<ipython-input-63-b99ab2d3551e> in <module>()
3 c = [a,b]
4
----> 5 print(c)
6 print(c[0])
7 print(c[1][2])
TypeError: 'str' object is not callable
<コマンドプロンプトの結果>
a = [1,2,3]
b = [4,5,6]
c = [a,b]
print(c)
[[1, 2, 3], [4, 5, 6]]
print(c[0])
[1, 2, 3]
print(c[1][2])
6
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/29 06:55