Syntax
Spot the Error
Kwarg or Posarg
Functions
Operators
100

String = "hello world'

What is a mismatched quotation?

100

print(input("Enter number: ") + 1)

What is missing a typecast?

100

A keyword arguement

What is a kwarg?

100

print()

What is a function call?

100

7+8

What is 15?

200

print "hello spain"

What is missing parentheses?

200

print(values[len(value)])

What is an off by one error?

200

end

What is a kwarg that checks for the end of an output?

200

Name of these: ()

What are parenthesis? 

200

15-5

What is 10?

300

4th_number = 3284725945897234897589037

What is invalid variable name?

300

print("hello\x")

What is an invalid escape character?

300

This argument type allows you to do special things

What is a kwarg?

300

You can have this few arguments in the print() function

What is 0?

300

2*8

What is 16
400

4 = a

What is an invalid left hand expression?


400

print("He said "I go to France for one more..."")

What is an invalid use of quotations?


400

sep

What is separates a string with a character

400

You can print this data type

What is any?

400

6/2

What is 3.0?

500

def add(a,b) { return a + b }

What is python using indents, not brackets?


500

print(4/(6*0))

What is division by 0?

500

Print functions are parsed using this type of argument

What is a posarg?

500

Print functions use this type of argument for special things

What is a keyword argument?

500

12%5

What is 2?