Variable Types
variable = "this"
String
What does this output? print("Hello, World")
Hello, World
for i in range of 4():
print "hello"
Who invented the world wide web?
Sir Tim Berners-Lee
string, integer, float, boolean
How do you print Area: 50 using a variable for area called var_area
def Make_table():
forward(30)
left(90)
forward = 30
forward(30)
what is wrong with this loop syntax?
print "hello"
for i in range(4):
what is 17 % 3?
% is the modulus operator, returns the remainder