Python Compiler
a = { 'name':'John Doe', 'num': 45 } print("{name} lucky number is {num}".format_map(a))
OUTPUT
John Doe lucky number is 45
×

Save as Private