Debugging in Python | Debugging Tips | Python Tutorials for Beginners

  Рет қаралды 35,381

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

Пікірлер: 61
@azarudeena6467
@azarudeena6467 6 ай бұрын
for num in range(1,10): if num%3 == 0 or num%5==0: print("fizzbuzz") elif num%3 == 0: print("fizz") elif num%5 == 0: print("buzz") else: print(num)
@FarhanKhan-nt7qv
@FarhanKhan-nt7qv 15 күн бұрын
First line as it is and In 2nd line number:-and, not or
@lubitusfarmsk7820
@lubitusfarmsk7820 Жыл бұрын
I am the first comment jennyy mam from tamilnadu❤ I am learning C program with help of your videos ...
@karnaedits306
@karnaedits306 Жыл бұрын
Tamil ah.... 😂
@RithveckhDhamodharan
@RithveckhDhamodharan Жыл бұрын
Even I'm from Tirupur, Tamilnadu
@RithveckhDhamodharan
@RithveckhDhamodharan Жыл бұрын
@@karnaedits306 Even I'm from Tirupur, Tamilnadu
@lubitusfarmsk7820
@lubitusfarmsk7820 Жыл бұрын
😁🙌🏻
@lubitusfarmsk7820
@lubitusfarmsk7820 Жыл бұрын
@@karnaedits306 tamilan...
@vaishnavisharma5728
@vaishnavisharma5728 3 ай бұрын
1. n%2==0 because "=" is used for assignment and "==" for comparison 2. Instead of multiple ifs use if-elif-else otherwise number which is divisible by 15 will print fizzbuzz, buzz and fizz altogether. And it should be and instead of or
@Manojmanu-c2k
@Manojmanu-c2k 11 ай бұрын
in fizzbuzz thing first we should use 'and' logical operator in if condition, and the we shoud use if elif elif else conditions, otherwise if number is divisible by both 3 and 5 will also divisible by 3 so its improper thing to use if conditions for all the conditions
@sanjayguguloth1729
@sanjayguguloth1729 Жыл бұрын
Hi Jenny mam, this is sanjay your favourite student from my side. these are the debugged results for Exercise - I n = int(input("Enter a number: ") if n%2 == 2: print ("Even") else: print("odd") Exercise -II for number in range (1,16): if number%3==0 or number%5==0: print("FizzBuzz") elif number%3==0: print("Fizz") elif number%5==0: print("Buzz") else: print(number)
@telugutechcorner
@telugutechcorner Жыл бұрын
bro in second exercise in line 2 it should be 'and' not 'or' according to fizzbuzz program
@nirvikdutta3407
@nirvikdutta3407 Жыл бұрын
@@telugutechcorner correct
@pushpanjalimishra2418
@pushpanjalimishra2418 Жыл бұрын
It's should be 'and' instead of "or"
@jitjena5291
@jitjena5291 Жыл бұрын
It will be " i%2==0 " in first exercise so it will return the even number
@white7557
@white7557 Жыл бұрын
Congratulations for 143+ million views on our channel mam❤ Love you❤
@vice-108
@vice-108 Жыл бұрын
Our channel 👀tune kb bnata
@dileepdillu4358
@dileepdillu4358 Ай бұрын
I am enjoying while seeing this video 😊
@sakshamsarthi00
@sakshamsarthi00 Жыл бұрын
Ma'am aap itna accha padha rhe ho main jee aspirants hu tbbhi HCV kr jgh pr apse coading ki lecture krne aaya hu 😅😅 after that meme ❤❤ Btw just kidding ❤😂
@itz_vaishu
@itz_vaishu 8 ай бұрын
1. == 2. Replace OR by AND ( this one am not sure )
@jjjmemes420
@jjjmemes420 3 ай бұрын
U said correctly🎉
@jjjmemes420
@jjjmemes420 3 ай бұрын
But instead of if if it shoud be if elif elif and else.
@itz_vaishu
@itz_vaishu 3 ай бұрын
@@jjjmemes420 Okie 🙌
@SuccessGeek
@SuccessGeek Жыл бұрын
Ma'am will you make a tutorial of JavaScript?
@RTBOSS
@RTBOSS Жыл бұрын
Why not anyone built auto correction or suggestions IDEs for C++ like programming...
@AnkitKumar-xx4vl
@AnkitKumar-xx4vl Жыл бұрын
because you didn't did
@shivakrishna_varma9658
@shivakrishna_varma9658 Ай бұрын
Line no 32 we should use == (equalto operator) instead of = (assignment operator)
@crazyeditstamil5717
@crazyeditstamil5717 3 ай бұрын
Answers: 1.n%2==0 2.for num in range(1,16): if num%3==0 and num%5==0: print("fizzbuzz") elif num%3==0: print("fizz") else num%5==0: print("buzz")
@hemab3857
@hemab3857 Жыл бұрын
In this if n%2=0, the correct one is n%2==0 Then in fizz buzz first if condition we want to use and Then instead of if elif ....
@mangeshlawande2428
@mangeshlawande2428 Жыл бұрын
It is helpful , thank you ma'am
@reasonalphysicsexplain9457
@reasonalphysicsexplain9457 6 ай бұрын
In the last programme there should elif instead of if and there should be and instead of or.
@glps369
@glps369 Жыл бұрын
Thank You So Much
@ChhotuYadav-ch3pd
@ChhotuYadav-ch3pd Жыл бұрын
Maidam hamara to art subject hai phir bhi aapki saari videos dekhte hai
@muneebbolo
@muneebbolo 7 ай бұрын
in the 1st assignment, = is missing. in the 2nd assignment, or should be replaced with and.
@anagamers
@anagamers Жыл бұрын
Did you explain Java programming???
@RithveckhDhamodharan
@RithveckhDhamodharan Жыл бұрын
Mam till how lectures are there in total to finish this PYTHON Course?
@himanshusrivastav3659
@himanshusrivastav3659 Жыл бұрын
Thank you mam 🙏
@Smruti-t2t
@Smruti-t2t 8 ай бұрын
== is used in the place of =
@sayednoorahmad8973
@sayednoorahmad8973 Жыл бұрын
Thanks❤❤❤
@rashmikasaravanan8407
@rashmikasaravanan8407 Жыл бұрын
In the hangman project that you uploaded earlier, theno of guesses are not fixed mam. Please check that once and let us know the solution
@Pin2__111
@Pin2__111 Жыл бұрын
Hello ma'am... Am from mechanical background and started my PhD recently.. My work is basically on Fortran coding.. I have zero knowledge in coding.. Can u plz guide me how to learn coding?? Thank you...
@vice-108
@vice-108 Жыл бұрын
Fortran 💀 kya bc vaccum tubes pr code kr rha
@GANESHV-gn3vt
@GANESHV-gn3vt 6 ай бұрын
How to comment a some block of code, by clicking one tap #
@darshanmodi8630
@darshanmodi8630 5 ай бұрын
hello ma'am all examples are copy from udemy
@Vaishu_M
@Vaishu_M Жыл бұрын
When will u start java programming lectures mam?
@gunasekhar8785
@gunasekhar8785 Жыл бұрын
Hello Ms jenny, i thought u will say something about breakpoints, and debugging through that. But this is like😢
@empireofeducation2244
@empireofeducation2244 Жыл бұрын
I m from Uttrakhand
@NaveenKumar-fq4sb
@NaveenKumar-fq4sb Жыл бұрын
sister gi pls latest python interview quation video upload
@freezedbrain.
@freezedbrain. Жыл бұрын
I am in Love with you mam 💖😍
@krushnalmahajan0124
@krushnalmahajan0124 6 ай бұрын
Mam it's for the fizzbuzz game they have 2 error 1st is replaced OR by AND 2nd is you put If If If Else That is replaced into If Elif Elif Else
@DEEPTHINALAMARU
@DEEPTHINALAMARU Жыл бұрын
What is ur screat mam
@shiv_gourav
@shiv_gourav 3 ай бұрын
81✅
@utti_12c
@utti_12c 8 ай бұрын
Gpt chat help me 🤭
@akshaydhadekar5588
@akshaydhadekar5588 Жыл бұрын
Mam aap hindi mai smja nahi skti kya 🤔🤔🤔
@jennysanjana3136
@jennysanjana3136 10 ай бұрын
I'm jenny...
@Kishor_D7
@Kishor_D7 7 ай бұрын
I'm Eren
@Venkatesh-q1d
@Venkatesh-q1d Жыл бұрын
Mam can I have ur number,i am an engineering student,and I have lots of doubts plz
@sukundrakambhampati4774
@sukundrakambhampati4774 Жыл бұрын
I❤u mem
@empireofeducation2244
@empireofeducation2244 Жыл бұрын
Hlo
File Handling in Python | Python Tutorials for Beginners #lec95
45:32
Jenny's Lectures CS IT
Рет қаралды 97 М.
НИКИТА ПОДСТАВИЛ ДЖОНИ 😡
01:00
HOOOTDOGS
Рет қаралды 2,7 МЛН
哈哈大家为了进去也是想尽办法!#火影忍者 #佐助 #家庭
00:33
火影忍者一家
Рет қаралды 130 МЛН
小丑家的感情危机!#小丑#天使#家庭
00:15
家庭搞笑日记
Рет қаралды 34 МЛН
How to whistle ?? 😱😱
00:31
Tibo InShape
Рет қаралды 16 МЛН
local and Global Scope in Python | Python Tutorials for Beginners #lec78
14:34
Jenny's Lectures CS IT
Рет қаралды 44 М.
While Loop in Python | Python Tutorials for Beginners #lec50
26:51
Jenny's Lectures CS IT
Рет қаралды 83 М.
Abstract Class & Abstract Method in Python | Python Tutorials for Beginners #lec99
26:38
Learn Python OOP in under 20 Minutes
18:32
Indently
Рет қаралды 72 М.
Python Decorators in 15 Minutes
15:14
Kite
Рет қаралды 447 М.
*args and **kwargs in Python | Python Tutorials for Beginners #lec62
22:03
Jenny's Lectures CS IT
Рет қаралды 71 М.
How To Use the Python Debugger
29:07
ProgrammingKnowledge
Рет қаралды 22 М.
Modules in Python | Python Tutorials for Beginners #lec97
25:28
Jenny's Lectures CS IT
Рет қаралды 73 М.
НИКИТА ПОДСТАВИЛ ДЖОНИ 😡
01:00
HOOOTDOGS
Рет қаралды 2,7 МЛН