Python Interview Questions in Tamil | Solve Python Programs | Skip Values in List

preview_player
Показать описание
Python Interview Questions in Tamil | Solve Python Programs | Skip Values in List

Join this channel to get access to perks:












__________________________________________________
like our face book page..
--------------------------------------------------------------------------------
send request our channel official facebookprofile...
---------------------------------------------------------------------------------

#santratechspot #programming #python
Рекомендации по теме
Комментарии
Автор

for x in range (1, 11) :
if x==5:
Continue
if x ==9:
Continue
print(x, end=" ")

Southindianmovies
Автор

For i in range(1, 11)
If i==5 or i==6:
Continue
Print(i)

watsappstatus
Автор

input=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
ans = []
for i in input:
if i == 5 or i ==9:
pass
else:
ans.append(i)
print(ans)

ajithkumar-ncym
Автор

a=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
a.remove(9)
print(a)

THALAfanda
Автор

Ans=[ ]
for i in range(1, 11) :
if i==5 or i==9:
Continue
ans. append( i )
print( ans )

darkhunt
Автор

Does anyone know from where to get the dumps for python beginner and advanced certification ?
Thanks makkale

LaxmanKumar-yjxi
Автор

Why we don't put else before append line???

lolitastudio
Автор

Bro remove or delete commands use pannlama?

bgmitamil
Автор

Bro web apps create panna bootsrap padikalama

BatMan-mktf
Автор

Bro dont do hard coding bro antha index la vera ethachum number kudutha appo ena pandrathu

logeshlyrics
Автор

input=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

print(output)

List slicing method use panna same output tha bro varuthu...ipati panalam bro correct ah..

arun