This is what I am trying to code: ask the user to deposit an amount of money of at least $20 to open the shopper card. The store will then give the first-time bonus of $10 to spend on items. The program will total the amount and generate the balance. If the amount originally deposited is less than $20, the customer will be told that the amount is too little to open the account (use of conditional expression). If the amount is greater than or equal to $20, then $10 will be added, and the total amount on the shopper card will be displayed. So far I have done this much but have gotten stuck.
print ('''Hi my name is Richard. Welcome to Buymore.''')
user = input( 'First name : ')
user = input( 'Last name : ')
user = input('ZIP code : ')
print ("Please deposit$20 into your account for your new shopper's card.")
user=input('20 dollars : ')
if num <20:
print ("Congratulation’s on opening your new card")
print ("As a gift we are giving you 10 dollars towards your first purchase")
if num >20 :
print('Need to deposit more minimum is 20 dollars')