Set 125 Practical Question

⭐ Q26. क्रेडिट कार्ड लिमिट चेक करना

Example Code (Read Only):


amount = int(input("Enter amount: "))
if amount <= 1000:

Python Online Editor