変数、数と文字

x = "6"
y = "6"
print x + y

x = 6
y = 6
print x + y

の違い

Comments are closed.