Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What will be the output of the following Python code segment? L = [ 1 , - 2 , 4 , 3 , 2 ,

What will be the output of the following Python code
segment?
L =[1,-2,4,3,2,-7,11.2.8.-1) x =0
for i in range(len(L)): if (L(i]<0):
continue
if (L(i)>10):
break
x = x + L[i] print (x)
a.
0
b.
1
c.
10
d.
21

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions