私はちょっとPythonに慣れていますが、最近私は最小値を見つける方法Pythonでmin関数やmax関数を使わずにリストを作成することができます。以下の私のコードです:whileループを使ってリストから最小値を見つける方法pythonでmin関数を使わないでください
#Prompt user to enter a minimum of 5 round trip times separated with commas
roundTrips = input('Please enter at least 5 round trips seprated by ",": ')
#Check closest object
def closest_object(roundTrips):
roundTrips = list(roundTrips.split(','))
count = 0
minimum = 0
if len(roundTrips)<=4:
print('error')
else:
while count<len(roundTrips):
positions = roundTrips[count]
count += 1
if minimum or (int(positions)<minimum):
minimum = positions
print(minimum)
#Perform the parsing of roundTrips input here
closestObject = []
print('The closest object is',closestObject) #Modify to display the closest object
return closestObject#Do not remove this line
「最小/最大」を使用できないのはなぜですか?この宿題ですか? – ekhumoro
私の講師は、min関数を使わずに最小値を見つけることが可能だと教えてくれました。まあ、私は彼が言ったことをしようとしたが、役に立たないので、私はこのfourmで助けを求めている –