Pls guys help 🙏 where is bug in this code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Pls guys help 🙏 where is bug in this code

maxBid = int(input() while(True): bid = int(input()) if bid>maxBid: break print("Sold:", bid)

25th Jan 2023, 12:50 PM
Тұрдыханов Райымбек
Тұрдыханов Райымбек - avatar
1 Answer
+ 12
first line missing closing brace ')'. print(..) should be outside loop..
25th Jan 2023, 12:55 PM
Jayakrishna 🇮🇳