Thursday, 4 July 2013
Python Practice - My attempt
# Receive and Return
# 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 = 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)
input("\n\nPress the enter key to exit.")
# 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 = 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)
input("\n\nPress the enter key to exit.")
Tutor/Literacy Thank you
Hi Ed / Ian,
Just wanted to say you have a brilliant tutor team. Throughout the digging deeper parts that I've been involved with your team have done some amazing things. I also just want to highlight that Hayley and Dave are superstars and return / complete everything and I've had some brilliant material back from them.
Cheers,
MJ
Wednesday, 3 July 2013
Yr 6 Induction Thanks
Thanks for doing the Induction lessons today
Mr M.D.Knight
SLE, ICT Director of Learning & Year 11 Academic Mentor
Wildern School
Tuesday, 2 July 2013
MatthewKnight.co.uk: Snap!
MatthewKnight.co.uk: Snap!: Snap! is a site that is ideal for MS/HS learning how to program. The site is a spin-off of Scratch and works very similarly w/ a drag-n-dr...
Subscribe to:
Posts (Atom)