Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
y=print (-2)
上記のコマンドをインタラクティブな Python セッションで実行できますか? Cygwinで試してみましたが、エラーが発生しました。
いいえ、print関数は を返すNoneので、yになりますNone。ただし、-2印刷されます。
print
None
y
-2
ただ行う:
y = -2
print は関数であり、変数に格納することはできません。このようなことを試してください:
y = -2 print(y)
Print(y) は y の内容をすべて出力します (この場合は -2)