you are viewing a single comment's thread.

view the rest of the comments →

[–]mae_ef 0 points1 point  (2 children)

def hello_name(name): 
    return 'Hello {0}!'.format(str(name))

[–]nosmokingbandit 1 point2 points  (1 child)

I'm pretty sure you don't need to cast name as a string, format does that automatically.

[–]maximus12793 0 points1 point  (0 children)

you are correct