Login
Remember
Register
Ask a Question
What would be the output if I run the following code block?
0
votes
asked
May 12, 2023
in
Python Flask
by
SakshiSharma
What would be the output if I run the following code block?
list1 = [2, 33, 222, 14, 25]
print(list1[-2])
14
33
25
Error
python-block
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 12, 2023
by
SakshiSharma
output:14
...