好吧,我試圖弄清楚這一點,沒有任何東西。我很確定我只是有一個「嘟嘟嘟嘟」的時刻,只要有人看到我的問題,我會覺得愚蠢,但我會問無論如何!我沒有得到我以前得到的錯誤,所以我甚至不知道如何解決它。任何幫助,將不勝感激! :dTypeError:一元運算符類型錯誤+:'str'第15行?
def main():
# Variables
total_sales = 0.0
# Initialize lists
daily_sales = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
days_of_week = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', + \
'Thursday', 'Friday','Saturday']
for index in range(7):
daily_sales[index] = float(input('Enter the sales for ' + \
days_of_week[index] + ': '))
for number in daily_sales:
total_sales += number
# Display total sales
print ('Total sales for the week: $', + \
format(total_sales, ',.2f'), sep='')
# Call the main function.
main()
你永遠需要一個'\'括號內' (...)',括號'[...]'或大括號{...}。事實上,我已經看到它建議你不要使用'\',而是在表達式中使用括號。 – millimoose
@AmberHolcombe您能否請我檢查我的答案是否能解決您的問題,如果您能請您驗證我的答案嗎? – lmiguelvargasf
@AmberHolcombe你解決了你的問題嗎? – lmiguelvargasf