What is cannot multiple two strings together. Must first typecast to ints using int(var1) and int(var2)
200
The woman in spotlight for web development
What is Nicole Dominguez
200
the difference between floats and integers
What is integers store whole numbers and floats can have decimals
200
l = []
stringDone = "done"
for item in l:
print(item)
print("all " + stringDone)
What is no error
300
The first version of internet that allowed communication between Stanford and LA
What is Arpanet
300
value of int(3.9999999)
What is 3
300
numOfApples = 5
if numOfApples < 3:
print("I need more apples for my pie")
elif numofApples == 3:
print("I have the perfect number of apples for my pie")
else:
print("we have plenty of applies for pie")
What is spelled numofApple wrong in the elif statement
400
The names of 6 instructors and TAs for both rooms
What is Daisy, Rachel, Becca, Jess, Diana, Anah
400
value of len([1,2,[1,2,3],4,[1,2,34],4,5,[]])
What is 8
400
sumNumsInList(inputList):
sum = 0
for item in inputList:
sum += item
return(sum)
print(sumNumsInList([1,2,3,4,10]))
What is forgot the word def before the definition of the function
500
Person that originally created the obamacon filter for Obama's campaign
What is Shepard Fairey
500
The data types that can use the * operator to perform action
What is between floats and integers as well as an integer * by a string
500
for i in range(10):
if i < 5:
print ("this small");
else:
print ("this is big");