6 lines
136 B
Python
Raw Normal View History

2021-04-18 00:01:33 -04:00
balance = 53.44
firstName = "John"
lastName = "Doe"
print("Hello %s %s. Your current balance is %.2f." % (firstName,lastName,balance))