0 votes
in Python Flask by
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

1 Answer

0 votes
by
output:14

Related questions

0 votes
asked Jun 24, 2020 in Azure by anonymous
0 votes
asked Aug 22, 2022 in Python by Robindeniel
...