Name_________________ net-id _______ Name_________________ net-id _______ Name_________________ net-id _______ Name_________________ net-id _______
total
after the
segment below executes?
total = 0 for x in range(10): total = total + x #value here
st
after the code below executes?
st = "" for x in "python": st = x + st #value here
st
after the code below executes?
st = "" for x in "python": st = st + x*2 #value here
st
after the code below executes?
st = "" py = "python" for x in range(1,7): st = st + py[-x] #value here
words = ["self", "contained", "underwater", "breathing", "apparatus"] abb = "" for w in words: abb = abb + w[1] print abb
"scuba"
"eonrp"
"fdrgs"