オライリーのPythonチュートリアルを読んで知らなかったことを自分用メモとしてまとめておく。 対話モードでは、最後に表示した式を「_」に代入してある。 >>> price = 1000 >>> tax = 10 >>> price * (tax+100)/100 1100.0 >>> print(_) 1100.0 3.1.2 文字列 raw文字列:エスケープ用 ...
次のコードが実行されたとき、book が True ならどのメッセージが表示されますか? if book: "This story is based on a book." else: "This story is based on a game." A. "This story is based on a game." B. "This story is based on a book." C.
0x01. Python - if/else, loops, functions LEARNING OBJECTIVES At the end of this project, you are expected to be able to explain to anyone, without the help of Google: General Why Python programming is ...