0
我有一個任務,我必須使用Python代碼來模擬公司的每小時平均最大客戶量。家庭作業提示說要導入隨機模塊並使用random.random()方法。我的問題是,我不知道該把函數本身放進去。這裏是我到目前爲止的代碼:公司的Python模擬
import random
#Function to calculate the average maximum of customers per hour
def ave_max_calc(C, H, D):
**HELP**
print('Hello, welcome to my average maximum hourly customer volume calculator!')
C = int(input('Give the number of customers per day: '))
H = int(input('Give the number of business hours per day: '))
D = int(input('Give the number of days to simulate: '))
print('The average maximum hourly customer volume is: ', ave_max_calc(C,H, D))
最後,一個至少試圖做某事的學生。嘗試閱讀此https://docs.python.org/3/tutorial/controlflow.html – thesonyman101
首先要做的是明確無誤地定義您的術語,計算將遵循這些定義。 – pjs