Coding Exercise for Beginners in Python with solution | Exercise 17 |Python for Beginners #lec48

preview_player
Показать описание
In this Lecture we have written a Program in Python to solve FizzBuzz Job Interview Question

*********************************************

Connect & Contact Me:

*******************************************

More Playlists:

#coding #pythonforbeginners #python #jennyslectures #pythonprogramming #codingquestions
Рекомендации по теме
Комментарии
Автор

for number in range(1, 100):

if number % 3 == 0 and number % 5 == 0:
print("FizzBuzz")

elif number % 3 == 0:
print("Fizz")

elif number % 5 == 0:
print("Buzz")

else:
print(number)

devSackey
Автор

I watched all 52 python videos from this channel + 1 python shorts too

Please upload more videos In python playlist

It'll be a life changer for lot of people like me
I thought that I never can code python
But this one make me feel like
Ok it's never impossible
I watch your tutorial and write code and notes in my note book and after writing notes I try to code with you
And after this I do live stream in YouTube
And I code
Because of you mam I uploaded lot of python coding videos in my channel
Just very much thankful to you
Please upload more videos

wrapfreekzz
Автор

for i in range(1, 16):
if i%3==0 and i%5==0:
print("fizz_buzz")
elif i%3==0:
print("fizz")
elif i%5==0:
print("buzz")
else:
print(i)

DivyaVani-msnr
Автор

kithni hard work karthe ho mam. truly speaking, no other channel suits me except this...ur teaching technique is so amazing that it gets inserted to our brain within a fraction of second, especially the Data Structures full tutorial...so, thank you for everything mam.
From Bangalore❤

shreeraman
Автор

n=int(input('enter nth value:- '))
x = 0
for i in range(1, n+1, 1):
a = i%3
b = i%5
if a == 0 and b ==0:
print('FizzBuzz')
elif a == 0 and b !=0:
print('Fizz')
elif a != 0 and b ==0:
print('buzz')
else:
print(i)

trlywvk
Автор

for a in range(1, 101):
if a%3==0 and a%5==0:
print("FizzBuzz")
elif a%3==0:
print("Fizz")
elif a%5==0:
print("Buzz")
else:
print(a)

girishbv
Автор

for i in range(1, 100):
if i%3!=0 and i%5!=0:
print(i)
if i % 3 == 0 and i % 5 == 0:
print('fizzbuzz')
if i%3==0:
print("fizz")
elif i%5==0:
print('buzz')

white-hat
Автор

for i in range(1, 16):
if (i%3!=0) and (i%5!=0):
print(i)
elif (i%3==0) and (i%5==0):
print('Jenny Bharat')
elif i%3==0:
print("Jenny")
elif i%5==0:
print('Bharat')

questforprogramming
Автор

for x in range(1, 100):
if x%3==0:
print('fizz')
elif x%5 == 0:
print('buzz')
elif x%3 == 0 and x%5 == 0:
print('fizzbuzz')
else:
print(x)

else:
print('execution successful bye')

vijaykommula-
Автор

I think is duniya me sirf aap hi hai.... Jo uthna koobsoorat hoke bhi teaching kar rahe
Btw tq for giving us this much knowledge.... Diii

From ur brother from another 🥰

Prabhu_ke_leela
Автор

1:48

for i in range(1, 101):

if i%3==0 and i%5 ==0:
print("FizzBuzz")

elif(i%3==0):
print("Fizz")

elif(i%5==0):
print("Buzz")




else:
print(i)

moscow_naresh_putin
Автор

I am a student of CSE. Ma'am, it would be helpful to me if you start a lecture on COORDINATE GEOMETRY and vector calculus. Unfortunately, I can't understand anyone's lectures very well except yours. it's a request mam. (from Bangladesh)

tasnikurtahsin
Автор

thank u very very Mutch
I understand a lot of things in just to days i wish have more and more vidéo and why not the live streaming if possible thank u

mytrlkd
Автор

Please upload the python to learn remaining really excellent

harishbabu
Автор

n=int(input("enter a no"))
for i in range(1, n+1):
print(i)
if i % 3 == 0 and i % 5 == 0:
print("fizzbuzz")
elif i%3==0:
print("fizz")
elif i%5==0:
print("buzz")

DARK_RYZEN
Автор

Mam, can u please tell which book you are taking reference for study

ravadarajasehkar
Автор

Mam your teching is better than offline coaching.

prasadingle
Автор

Thank you very much mam for ur lovely lectures 😍😍 love u mam❤❤ always favourite teacher of mine!!

Rishithabajjuri
Автор

Your content is amazing, I just subscribed!

MyCodingDiary
Автор

for i in range(1, 101, 1):
if i%3==0 and i%5==0:
i=('fizzbuzz')
elif i%3==0:
i=('fizz')
elif i%5==0:
i=('buzz')
print(i)

I wrote it in this way but it actually worked 😂

sultanansari