console
1$ python
2Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC v.1924 64 bit (AMD64)] on win32
3Type "help", "copyright", "credits" or "license" for more information.
4>>> x=input("please enter number:")
5please enter number:100
6>>> print(x)
7100
チュートリアルにはこんな書き方がされていませんでしたか?
上記のような場合は、ファイルにプログラムを書くのではなく、
ターミナルで python
コマンドを実行し、
対話的にコードを入力していきます
1
ターミナルで次のコマンドを実行します:
すると、次のように >>>
が表示されます:
console
1Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC v.1924 64 bit (AMD64)] on win32
2Type "help", "copyright", "credits" or "license" for more information.
3>>>
2
x=input("please enter number:")
と入力して ENTER
キー
すると、please enter number:
と表示されます:
console
1$ python
2Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC v.1924 64 bit (AMD64)] on win32
3Type "help", "copyright", "credits" or "license" for more information.
4>>> x=input("please enter number:")
5please enter number:
3
100
と入力して ENTER
キー
すると、再び、>>>
が表示されます
console
1$ python
2Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC v.1924 64 bit (AMD64)] on win32
3Type "help", "copyright", "credits" or "license" for more information.
4>>> x=input("please enter number:")
5please enter number:100
6>>>
4
x
を print
してみましょう
print(x)
と入力して ENTER
キー
すると、100
と表示されます:
console
1$ python
2Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC v.1924 64 bit (AMD64)] on win32
3Type "help", "copyright", "credits" or "license" for more information.
4>>> x=input("please enter number:")
5please enter number:100
6>>> print(x)
7100
8>>>
5
exit()
で終了します:
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。