1. 程式人生 > >python3的輸入輸出

python3的輸入輸出

clas pri 計算 自動 mage 空格 str php png

輸出函數用法

print(‘hello,world‘) #單引號和雙引號都可以輸出
print("hello,world")
print(‘I‘,‘Love‘,‘You‘) #中間的逗號會變成空格
print(‘\r\n‘) #會有一個換行
print(‘我愛中國‘)
print(‘100+200=‘,100+200) #會自動計算出結果

運行結果:

技術分享圖片

輸入函數

name = input(‘please enter your name: ‘)
print(‘hello,‘, name)

python3的輸入輸出