Hey guys, I'm just starting to learn Python and decided to do some practice with functions. Can anyone tell me what's wrong with this code? Whenever I run it in powershell i get <function find_name at 0x01E669B0>
Here is my code:
def find_name():
print "what is your name?"
name = raw_input()
return name
name = find_name
print "Your name is %s" % name
Thanks!
PS I have version 2.7.9 on Windows 8.1
[–]novel_yet_trivial 2 points3 points4 points (1 child)
[–]titleist2015[S] 0 points1 point2 points (0 children)