String = "hello world'
What is a mismatched quotation?
print(input("Enter number: ") + 1)
What is missing a typecast?
A keyword arguement
What is a kwarg?
print()
What is a function call?
7+8
What is 15?
print "hello spain"
What is missing parentheses?
print(values[len(value)])
What is an off by one error?
end
What is a kwarg that checks for the end of an output?
Name of these: ()
What are parenthesis?
15-5
What is 10?
4th_number = 3284725945897234897589037
What is invalid variable name?
print("hello\x")
What is an invalid escape character?
This argument type allows you to do special things
What is a kwarg?
You can have this few arguments in the print() function
What is 0?
2*8
4 = a
What is an invalid left hand expression?
print("He said "I go to France for one more..."")
What is an invalid use of quotations?
sep
What is separates a string with a character
You can print this data type
What is any?
6/2
What is 3.0?
def add(a,b) { return a + b }
What is python using indents, not brackets?
print(4/(6*0))
What is division by 0?
Print functions are parsed using this type of argument
What is a posarg?
Print functions use this type of argument for special things
What is a keyword argument?
12%5
What is 2?