Demonstrates parameters and return values : Return : Function : Python examples (example source code) Organized by topic

C++
PHP
Python
Python Home »  Function   » [  Return  ]  Screenshots 
 



Demonstrates parameters and return values





def display(message):
    print message

def give_me_five():
    five = 5
    return five

def ask_yes_no(question):
    """Ask a yes or no question."""
    response = None
    while response not in ("y""n"):
        response = raw_input(question).lower()
    return response

# main
display("Here's a message for you.\n")

number = give_me_five()
print "Here's what I got from give_me_five():", number

answer = ask_yes_no("\nPlease enter 'y' or 'n': ")
print "Thanks for entering:", answer

raw_input("\n\nPress the enter key to exit.")


           
       
Related examples in the same category
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.