For Loops In Python | Python Tutorials For Absolute Beginners In Hindi #16

preview_player
Показать описание


Best Hindi Videos For Learning Programming:

Follow Me On Social Media
Рекомендации по теме
Комментарии
Автор

Best hindi programming channel in youtube!!!

rohankalonia
Автор

a1 = ["Kernain", 2, "Mohsin", 4, 6, 8, 90, 55, 44, 55, ]
for i in a1:
if type(i) == int and i<6:
print(i)

bhaimohsin
Автор

list=[1, 9, 6, 50, "Annu", "c", 4.5, 56, 'AV', [12, 5]]
for x in list:
if type(x)==int and x>6:
print(x)

annusehrawat
Автор

The first time I watched code with harry then I got to know the person will help in my programming of python and it has helped me a lot in my class 8 exam

kkmodi
Автор

a=[]
n=int(input("print how many entities you want to input in list : "))
for i in range(0, n):
var=input("enter the entities : ")
a.append(var)
for item in a:
if item.isnumeric() and int(item)>6:
print("numbers >6 are ", item)

debjitlaha
Автор

i like your video a lot. there is no word in literature to describe it. i would be very happy if you post the video for the beginners as there are certain things beyond my understanding.

noname-ghpf
Автор

I searched watched many python tutorials but this playlist of python by Harry bhai is just awesome, thank u so much bro for this python playlist I had reached till #16 and I will continue to complete this and I hope you keep updating this python series.

anuragrathod
Автор

a2 = ["aarav", 2, "hhrh", 4, 6, 82, 30 ]
for items in a2:
if type(items) == int and i>6:
print(items)

Padam_Ahlawat
Автор

I decided to add some modifications myself for better understanding list1=[12, "HARRY", 1, 23, 45, 6, "MOKSH", "ASGARD", 2354.75, True, 3, False]
for item in list1:
if type(item)==int or type(item)==float or type(item)==bool:
if item>6 or type(item)==bool:
print(item)

mokshsaini
Автор

I didn't know about isnumeric( ) so I did this
.
.
.
list1=["there are some apples",
"4", 6, 10, 12, 5, 78, 99, 1, 2,
"aloo chaat"
"the end" ]
for item in list1:
if type(item) == int:
if item > 6:
print(item)

prathamlalawat
Автор

list = ["System", 9, "Favourite", True, 3, 5, 13, 16]
for items in list:
if type(items)==int and items>6:
print(items)

sankalitasarkarhaldar
Автор

list3 = ["F", 2, 22, "g", 4, "y", 9, "f", 11, 33, 4, "d"]
for item in list3:
if type(item) == int and item > 6:
print(item)

Funwithfm
Автор

Papa : Aaj Kya kiya beta ?
Me: SAARE VARIABLES KO PEL DIYA !!!

beyondzetabyte
Автор

#Quiz
list = ["hello", 67, "hi", 78, 1, 4, 8.99, 5.9999]
for item in list:
if type(item) == (int) or type(item) == (float) and item>6:
print(item)
else:
print()

mrunknown
Автор

list1 =["hi", 1, 6, "bye", 35, 2, 7, "hello", 10, 85, 3, "yo", 88, int]
for item in list1:
if type(item)==int and item>6:
print(item)

foverosnitesh
Автор

list1=[2, 4, 3, "test", "tea", 7, 8, 6]
for i in list1:
if type(i)==int and i>6:
print(i)

kusumkumari
Автор

li_st=['a', 'b', 12, 3, 4, 67]
for item in li_st:
if type(item)==int and item > 6:
print(item)

bhartichambyal
Автор

Thanks.. ye mujhe samajh nahi aa Raha Tha .ab samajh gaya

RohanDasRD
Автор

list3=["kalam", "tamal", 26, 20, 45.2, 20, 8, 12.5, 10, 25.3, 14.2, 3.4]
for item in list3:
if type(item)==int or type(item)==float :
if type(item)==int and type(item)==float or item>6:
print(item)

taifurislam
Автор

list1 = ['sahil', 'kumar', 3, 7, 10, 'babul', 4, 'sd', 9, 4.5, 6.7, 'hello']
for item in list1:
# print(item)
if type(item) == int and item>6:
print(item)
# to print integer greater than 6 in a mixed list

sahilkumar