python中輸入輸出
阿新 • • 發佈:2020-08-04
一個程式要進行互動,就需要進行輸入,進行輸入→處理→輸出的過程。所以就需要用到輸入和輸出功能。同樣的,在Python中,怎麼實現輸入和輸出?
Python3中的輸入方式:
Python提供了input()內建函式從標準輸入讀入一行文字,預設的標準輸入是鍵盤。
例如:
n = input() print(n) >>>輸入Python3 >>>Python3
其中輸入的資料以字串型別進行儲存,如果輸入數字的話,後續需要轉換型別才能進行操作。
n = input()
print(n)
>>>輸入 5
>>>5
另外,input()可以接收一個Python表示式輸入,並將運算結果返回。
例如:
n = eval(input()) print(n) >>>輸入 5+2 >>> 7
可以使用eval()函式將輸入轉換為數字(但輸入其他的型別時,會產生錯誤)
n = eval(print()) print(n) >>>輸入 4 >>>4
當要輸入多個數據時,可以使用split()函式
n = input().split() print(n) >>>輸入1 2 3 4 5 >>>['1','2','3','4','5']
Python中的輸出(列印)方式:
Python提供了print()內建函式完成輸出
使用print()列印
n="Python3" print(n)
>>>Python3
可以打印出數字和字串
end=' '和\n 相同
使用format()函式格式化輸出
例如:
>>> print("{:.2f}".format(3.1415926)); 3.14
還可以輸出其他型別