Tuesday, 16 July 2013
Monday, 8 July 2013
Curriculum changes 'to catch up with world's best' - 8 July 2013
Mr Gove has announced changes to the curriculum for computing
http://www.bbc.co.uk/news/education-23222068
http://www.bbc.co.uk/news/education-23222068
Thursday, 4 July 2013
Python - CM Meeting 040713
# 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.")
Thursday, 27 June 2013
New VLE - How to
Javi and Richard have made some 'How 2' movies to support with using the new VLE. New features like creating an image gallery (called the lightbox) and general tips on how to upload with folders etc... to keep your subject areas looking good and easy to use feature on the films.
Please find the link to the movies on the new VLE below
https://moodle2.wildern.hants. sch.uk/course/view.php?id=80
The new VLE welcome page is:
https://moodle2.wildern.hants. sch.uk/
Our usual school website login should work for it.
Any questions please contact Tim, myself or ask the Lead Practitioners!
Thanks,
Please find the link to the movies on the new VLE below
https://moodle2.wildern.hants.
The new VLE welcome page is:
https://moodle2.wildern.hants.
Our usual school website login should work for it.
Any questions please contact Tim, myself or ask the Lead Practitioners!
Thanks,
Subscribe to:
Posts (Atom)