Text To PDF
Text To PDF
connector
if choice == '1':
name = input("Enter sweet name: ")
price = float(input("Enter sweet price: "))
quantity = int(input("Enter sweet quantity: "))
add_sweet(name, price, quantity)
else:
print("Invalid choice! Please try again.")