如果条件为假,我如何才能回到第一行。
while True:
food = int(input("food bill: "))
if food <= 10:
print("please write more than 10")
#If i put break statement here it does not go forward
else:
carbill = int(input("carbill: "))
print("Total Montlhy expenditure is : " , grandtotal)