我在桌面上創建了一個小型python文件以獲得樂趣,而且我很沮喪地發現沒有值被返回。下面是從文件中的代碼:終端不在Mac上打印python代碼
def calc(x):
chance =1
for i in range(1,x+1):
chance *= ((365-i)/365)
return chance * 100
string = calc(23)
print string
,這裏是什麼我鍵入到終端:
cd Desktop #where file is located
python py.py #py is the name of the file
而這正是它返回:
0
這應該工作。確保你在shell中用'cat py.py'執行正確的文件?另外,「結束我?」這不是那麼可怕,是嗎? –