我是新來的python,所以我想創建一些簡單的程序來學習更多。Python循環問題
這個程序,我需要與旨在幫助執行以下步驟:
- 要求一個名字
- 詢問多次重複的東西在一首歌
- 打印出給定歌詞給定的次數
但我有一個問題,它不重複,我做錯了什麼?
def bSong(name):
print('Happy Birthday to you!')
print("Happy birthday dear " + name + "")
def main():
times = int(input('Enter the number of times to repeat: '))
for i in range(times):
name = input("What is the name of the birthday person: ")
bSong(name)
main()