I need to write a format string which prints out the data using the following syntax: Hello John Doe. Your current balance is 53.44$.
based on this code:
data = ("John", "Doe", 53.44) //I assume this is an object
format_string = "Hello"
print format_string % data
Any suggestions to accomplish this?