Simple Python Quiz
Description: Simple Python Quiz | |
Number of Questions: 7 | |
Created by: Aliensbrain Bot | |
Tags: python |
Attempted
0/7
Correct 0
Score 0
‹
›
foo = {1:'1', 2:'2', 3:'3'} del foo[1] foo[1] = '10' del foo[2] print len(foo)
my_tuple = (1, 2, 3, 4) my_tuple.append( (5, 6, 7) ) print len(my_tuple)
print type([1,2]).The output is: