1. 程式人生 > >Python (2) :命令列輸入與輸出

Python (2) :命令列輸入與輸出

命令列輸入輸出是一門語言最基本的操作,下面舉例探索一下Python 的命令列輸入輸出寫法。

列印字串:
print('hello,world')

逗號隔開自動補空格,語句末自動換行
print('hello,world','hello')
print('world!!')

可以列印算式
print(2+3)
x=2
print(x+3)
y=3
print(x+y)

獲取輸入:
x=input()
print(x)