python for data science ai & development coursera week 3 quiz answers
Practice Quiz
2. What is the output of the following code segment:
i=6
i<5
- True
- False
- SyntaxError: can’t assign to literal
6. in the video what would be the result if we set the variable age as follows: age= -10
o see Meat Loaf
move on
you can enter
move on
7. what is the result of the following: True or False
- True, an or statement is only False if all the Boolean values are False
- False
Shuffle Q/A 1
10. what is the output of the following:
for i,x in enumerate(['A','B','C']):
print(i,x)
0 A
1 B
2 C
AA
BB
CC