question archive What is the output of print(tuple[2:]) if tuple = ( 'abcd', 786 , 2

What is the output of print(tuple[2:]) if tuple = ( 'abcd', 786 , 2

Subject:Computer SciencePrice:1.87 Bought7

What is the output of print(tuple[2:]) if tuple = ( 'abcd', 786 , 2.23, 'john', 70.2 )?

pur-new-sol

Purchase A New Answer

Custom new solution created by our subject matter experts

GET A QUOTE

Answer Preview

Answer:

it print elements starting from 3rd element

output:

[2.23, 'john', 70.2]