python學習筆記 使用者輸入和while迴圈

2021-10-20 17:59:20 字數 752 閱讀 1693

函式input()讓程式等待執行,等待使用者輸入一些文字。它接受乙個引數——向使用者顯示的提示、說明。

>>

> prompt=

"if you tell me who you are,i can personalize the messages you see"

>>

> prompt+=

"\nwhat is your name?"

>>

> name=

input

(prompt)

if you tell me who you are,i can personalize the messages you see

what is your name?

for迴圈用於對集合中的元素都執行乙個**塊,而while迴圈則不斷的執行,知道指定的條件不滿足為止。例如,遊戲使用while迴圈來讓玩家可以在想退出時停止執行。

>>

> number=

1>>

>

while number<=10:

...print

(number)..

. number+=1.

..12

3456

78910

可定義乙個變數,用於判斷整個程式是否處於活動狀態,稱為flag。可以讓程式在任何事件導致flag為false的時候停止執行。這樣while語句只需要檢查flag的值就可以了。

Python筆記(5)使用者輸入

user bin env python coding utf 8 author berlin 一 第一種使用者輸入方式 python的變數都是字串型別 s代表輸入是string d代表輸入是format 整數 f代表輸入是小數 浮點。s d f都是代表佔位符 username input passw...

python請求使用者輸入 使用者輸入

使用者輸入 大多數程式都旨在解決終端使用者的問題,為此通常需要從使用者那裡獲取一些資訊。例如,假設有人要判斷自己是否到了投票的年齡,要編寫回答這個問題的程式,就需要知道使用者的年齡,這樣才能給出 答案。因此,這種程式需要讓使用者輸入其年齡,再將其與投票年齡進行比較,以判斷使用者是否到了投票的年齡,再...

Python 學習筆記 001 輸出和輸入

在此感謝廖雪峰老師出的新手教程 print hello,world hello,world 列印字串 print abc 123 ab 12 abc 123 ab 12 預設以 將多個字串連線並列印出來 print 200 200 列印整數 print 200 100 300 列印運算結果 prin...