HINTS
Useful hints and tips from Mr C! (Scroll down!)
HINT 1- Help With Letter

HINT 2- TRANSITIONS
To do transiitons please-
a) Click Transitions
b) Go to far right
c) Click advance slide after
d) add time
e) Apply to all
HINT 3- LOOP
a) Click Slide Show
b) Click Setup Show
c) Click Loop
HINT 4 BARGROVE EXTENSIONS- PICK ONE!
1) Add In Warning (make it Flash) For 1 Day (e.g. Pool closed on a Tuesday)
2) Is the transition longer for the current day? Change it?
3) Add an advert in to a new slide advertising a restaurant in Weymouth. You choose!
4) Add an advert in to a new slide advertising a museum in Weymouth
HINT 5- PYTHON VARIABLES
score=0
lives=0
HINT 6- PYHON QUESTIONS
???? mean YOU need to add the right code in
ques1=input(????????????)
ansa1="London"
if ques1==????? :
print ("Correct")
score=score????
elif ques1!=????? :
print ("InCorrect")
score=score????
HINT 7- PYHON LOOP QUESTIONS
???? mean YOU need to add the right code in
ques1=input(????????????)
ansa1="London"
if ques1==????? :
print ("Correct")
score=score????
while ques1!=????? :
print ("InCorrect")
score=score????
ques1=input(????????????)
HINT 8- HOW TO CREATE A GAME THAT STOPS IF LIVES are 0
while lives>0:
NOW ADD ALL YOUR CODE HERE FOR THE GAME
if lives==0:
print ("You have lost the game")
exit() #PS this code end the game and stops Python
HINT 9- FILE READING
f = open(phonemake+".txt","r")
HINT 9- PYTHON TIMESTABLE GAME
num=0
num=int(input("What times table?"))
print ("What is 3 x",num)
ques1=int(input("My answer"))
ansa1=num*3
if ansa1==ques1:
print("Correct")
elif ansa1!=ques1:
print("InCorrect")
HINT 10- PYTHON- HOW TO COUNT RECORDS THAT ARE FOUND
with open ("Data.csv","r") as csv_file:
csv_reader=csv.reader(csv_file)
userchoice=input ("Which is your search")
for row in csv_reader:
for field in row:
count=count
if field==userchoice:
count=count+1
print("your count is",count)