Edit Game
Match the Python
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public




Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   8  Close
What's the Python?
 
if timer > 10:
 
when timer > 10
 
event when timer.reaches(10)
 
10 < timer
What's the Python?
 
return message
 
send(message)
 
self.message
 
self.send(message)
What's the Python?
 
x += 10
 
x 10
 
x + 10
 
x = 10
What's the Python?
 
while True:
 
while something = True {
 
while False:
 
update(True)
What's the Python?
 
for i in range(10):
 
for (i = 0; i < 10; i++) {
 
for i in 10:
 
repeat 10 times:
What's the Python?
 
print("Hello")
 
say("Hello")
 
printf("Hello");
 
Console.WriteLine("Hello")
What's the Python?
 
if x == 50:
 
if x = 50:
 
if x = 50 { }
 
if x? 50?
What's the Python?
 
time.sleep(1)
 
time.wait(1)
 
wait.time(1)
 
sleepy_time(1)