Log in | |
Track your progress |
Progress: Problem 1 of 8
Email Address: | Register |
Reset Password |
||
Password: | Log in |
What code will print out the first element?
x = [ 1 , 2 , 3 , 4 , 5 ] |
print (x[ 0 ]) |
print (x) |
print (x( 0 )) |
print ([ 1 ]) |
print (x[ 1 ]) |
print (x( 1 )) |
Check Answer
Next