6. Dictionaries in Python for Class 12 Boards | Class 11th Revision

preview_player
Показать описание
Notes and Important Links of this lecture 👇
Рекомендации по теме
Комментарии
Автор

L = [ ]
for i in range(100):
if (i%3==0 and i%5==0):
L.append(i)
print(L)
We can also use (i%15==0) as the 'if' condition.

vedantdev
Автор

The problem solving logic is too good, amazing!

arjunverma
Автор

APNI KAKSHA
BEST EDUCATIONAL CHANNEL🙏🏻🙏🏻
Who

amitsinghkushwah
Автор

Please complete this python course very soon, preboards are near😰😰😰😰😰😰

vatsalsharma
Автор

19:20 we will have to take it as I in range (7) as we need to print only 9 elements.
2 elements taken initially + 7 elements from loop as it will go from 0 to 6

anonymous-yqpi
Автор

L=[]
for d in range(101):
L.append(d)

L2=[]
for i in L:
if i%3==0 or i%5==0 and i<100:
L2.append(i)
print(L2)
This is anwer of HW question. Is it usefull?

prince.
Автор

Bhaiya plz add more questions on programs in videos which important for boards and thanks for providing that much ausome lectures

AbhishekSharma-wtst
Автор

H.W. Question :
L=[]
for i in range(100):
if ((i%3==0) and (i%5==0)):
L.append(i)
print(L)

manavgusain
Автор

Jaldi complete karaye ye series bhaiya🙏🙏🙏🙏🙏

vibhashkumar
Автор

a=[]
for i in range(1, 101):
if i%3==0 or i%5==0:
a.append(i)
print(a)
hw done
😁

sainikaindorjey
Автор

Solution to HW:

L = []
for i in range(1, 101):
if i%3 == 0 or i%5 == 0:
L.append(i)
else:
continue
print(L)

abhayzz
Автор

Thanks a lot waiting for chemistry organic..

factsmyths
Автор

16:27 max= len(L[0]), then value of max can be compared to the length of other elements

tusharrocks
Автор

thanks a lot to the entire team of apni everything easily❤

prachi
Автор

7:44 increase volume and put your headphones on

yashrajput
Автор

1hrs later my cs board exam and I'm watching this😂

sahilnegi
Автор

hw ques answer
L=[]
for i in range(1, 101):
if(i%3==0 or i%5==0):
L.append(i)
else:
print(i)

tusharsingh
Автор

Thank you so much for this python course ❤️... can you please help us out with the SQL part too?

vedikasingh
Автор

Bhaia thanks for the series, , , , it is amazing, it clears each concept
I am proud to be born in this Era of internet where I can learn as much as I wish

indianvines
Автор

HOMEWORK:

a=[]
for i in range(1, 101):
if i%3==0 or i%5==0:
a.append(i)
print(a)

DialShubhra