首頁  >  文章  >  後端開發  >  Python的命令列輸入方法怎麼用

Python的命令列輸入方法怎麼用

WBOY
WBOY轉載
2023-05-10 12:34:062283瀏覽

命令列輸入

Python 允許命令列輸入。

這意味著我們能夠要求使用者輸入。

Python 3.6 中的方法與 Python 2.7 略有不同。

Python 3.6 使用 input() 方法。

Python 2.7 使用 raw_input() 方法。

下面的範例會詢問使用者的姓名,當輸入名字時,名字會印到螢幕上:

Python 3.6

print("Enter your name:")
x = input()
print("Hello ", x)

#Python 2.7

print("Enter your name:")
x = raw_input()
print("Hello ", x)

將此檔案另存為 demo_string_input.py,並透過命令列載入它:

C:\Users\Your Name>python demo_string_input.py

我們的程式會提示使用者輸入一個字串:

Enter your name:

現在使用者輸入姓名:

Bill

然後,程式會列印一段訊息:

Hello, Bill

以上是Python的命令列輸入方法怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除