How do I write a Stock transaction program using while loops that allows user to input the followings as many times as user wants to until the user is done?
1
Expert's answer
2016-03-18T15:48:04-0400
flag = True while flag == True: ask = input('Please, input yor data(write "q" for exit): ') if ask == 'q': flag = False
Comments
Leave a comment