หมายเหตุ:นี่ไม่ใช่ความท้าทายในการเล่นกอล์ฟมากนัก มันมากขึ้นดังนั้นขอคำแนะนำการเล่นกอล์ฟ
เมื่อเร็ว ๆ นี้ฉันมีการกำหนด Python สำหรับคลาสการพัฒนาเว็บของฉันเพื่อตรวจสอบว่าเราสามารถใช้รหัสได้หรือไม่ เนื่องจากฉันรู้สึกสบายใจกับ Python ฉันจึงตัดสินใจลองเล่นกอล์ฟและฉันก็สงสัยว่าผู้คนจะชี้ให้เห็นสิ่งที่ฉันพลาดไปได้ไหม
ฉันรู้แล้วว่ามีช่องว่างเพิ่มเติมในบางสถานที่ แต่ฉันสนใจสิ่งต่าง ๆ ในเชิงแนวคิดมากกว่าเช่นใช้while r:
เมื่อ r เป็นตัวแปรแล้วรอให้ "หมด"!
import random
from collections import Counter
s=l=''
c=['yellow','blue','white','green','Black', 'purple', 'silver', 'cyan', 'magenta', 'red']
n=[10,15,1,10,6,15,10,25,1,12,5,10,4,6,5,12,0,10,1,1]
o=i=0
for y in c:l+=y[0]*(random.randint(n[o],n[o+1]));o+=2
l=list(l)
print("Welcome to the CIMS Gumball Machine Simulator\nYou are starting with the following gumballs:")
for b in c:print(str(l.count(b[0])) + " "+b);random.shuffle(l)
print("Here are your random purchases:")
while 'r' in l:
random.shuffle(l); r=l.pop(); s+=r
for j in c:
if j[0] == r:print(j.capitalize())
print("You purchased %i gumballs, for a total of $%.2f \nMost common gumball(s):" % (len(s),len(s)*25/100))
a=Counter(s).most_common()
m=[x[1] for x in a]
while m[0] == m[i]:
for j in c:
if j[0] == a[i][0]:print(j.capitalize(), end=" ")
if(i<(len(m)-1)):i+=1
else:break
นอกจากนี้: ฉันขอโทษถ้านี่ไม่ใช่คำถามที่เหมาะสมสำหรับหน้ารหัสกอล์ฟเพราะมันไม่ใช่สิ่งที่ท้าทายและจะลบมันออกเมื่อมีการร้องขอ
print
แต่เพื่อตรวจสอบ)