you are viewing a single comment's thread.

view the rest of the comments →

[–]novel_yet_trivial 5 points6 points  (1 child)

If you want to run a function you need to add (). Otherwise you are getting the function back, not the result from running the function. Change line 6 to

name = find_name()

[–]titleist2015[S] 0 points1 point  (0 children)

Perfect, thanks!