如何使用python引用字符串中的整數?我對編碼完全陌生,我試圖做這個bug收集練習,用戶將輸入一週中每天收集的錯誤數量,並顯示一週結束時收集的錯誤總數。參考字符串內的整數? Python
這是我到目前爲止的代碼。
totalBugs = 0.0
day = 1
for day in range(7):
bugsToday = input('How many bugs did you get on day', day,'?')
totalBugs = totalBugs + bugsToday
print 'You\'ve collected ', totalBugs, ' bugs.'
,所以我試圖讓內循環bugsToday提示詢問 用戶「有多少錯誤你第1天收?」 「您在第2天收集了多少個錯誤?」 等等。
我該怎麼做?
你想「從用戶輸入讀取」。檢查:http://stackoverflow.com/questions/3345202/python-getting-user-input – doublesharp
可能的重複[如何將字符串轉換爲整數在Python?](http://stackoverflow.com/questions/642154/如何將字符串轉換爲整數在Python中) – Paul
's =「34」''n = int(s)''print n + 1'' 35' – Paul