2021-04-18 00:01:33 -04:00

6 lines
136 B
Python

balance = 53.44
firstName = "John"
lastName = "Doe"
print("Hello %s %s. Your current balance is %.2f." % (firstName,lastName,balance))