8.3.4 結合使用函式和 while 迴圈
可將函式同本書前面介紹的任何 python 結構結合起來使用。例如,下面將結合使用函式 get_formatted_name() 和 while 迴圈,以更正規的方式問候使用者。下面嘗試使用名
和姓跟使用者打招呼:
greeter.py
def get_formatted_name(first_name,last_name):
"""返回整潔的姓名"""
full_name = first_name + ' ' +last_name
return full_name.title()
#這是個無限迴圈!
while true:
print("\nplease tell me your name:")
f_name = input("first name:")
l_name = input("last name:")
formatted_name = get_formatted_name(f_name,l_name)
print("\nhello, " + formatted_name + "!")
第八章 指標 第八章 指標
1 什麼是位址 include using namespace std int main 11 在堆中建立對像 我們既然可以在堆中儲存變數,那麼也就可以儲存對像,我們可以將對像儲存堆中,然後通過指標來訪問它 include using namespace std class human 14 在建構...
Python基礎 第八章
到斜槓與正斜槓 windows中,路徑書寫使用倒斜槓作為資料夾之間的分隔符,os x和linux上,則使用正斜槓作為它們的路徑分隔符。獲取當前工作目錄 os.getwd 即可獲得當前工作路徑的字串。絕對路徑和相對路徑 絕對路徑 總是從根資料夾開始,相對路徑 相對於程式的當前工作目錄。os.path模...
第八章 python 元組
基本上元組的每乙個資料稱元素,元素可以是整數 字串或列表等,這些元素放在小括號 內,彼此用逗號 隔開。如果要列印元組內容,可以用 print 函式,將元組名稱當作變數名稱即可。如果元組內的元素只有乙個,在定義時需在元素右邊加上逗號 例 定義與列印元組,最後使用 type 列出元組資料型別 numbe...