6 lines
136 B
Python
6 lines
136 B
Python
balance = 53.44
|
|
firstName = "John"
|
|
lastName = "Doe"
|
|
|
|
print("Hello %s %s. Your current balance is %.2f." % (firstName,lastName,balance))
|