/ Published in: Python
hola() function to avoid having to write print "hola mundo" and only write hola () to display hola mundo whenever we wish.
Expand |
Embed | Plain Text
#Define a function >>> def hola(): print "hola mundo" #Call the function >>> hola() hola mundo
You need to login to post a comment.
