Coding Exercise for Beginners in Python | Exercise 6| Python for Beginners

  Рет қаралды 81,170

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

Пікірлер
@mr_affan15
@mr_affan15 2 жыл бұрын
Mam I'm totally depends on you u r best and complete teacher for programming plzz upload fast python exercises 🙂✌🏻
@-A44sh3
@-A44sh3 2 жыл бұрын
Wow!!! Coding is easy😢😱😮😊. Great madam.
@physicsfun8653
@physicsfun8653 4 ай бұрын
I come from a C and C++ background mam, and I am currently learning Python from your series. You are the best teacher I've had, especially after my C teacher, who sadly passed away.
@bittu6724
@bittu6724 20 күн бұрын
num = input("type any number ") num = int(num) print(num) if(num/2 == 0): print("it is an even number") else : print("it is an odd number")
@DivyaKarike
@DivyaKarike 6 ай бұрын
Thankyou your teaching amizing❤
@venkateswarlugoud4564
@venkateswarlugoud4564 2 жыл бұрын
Super mam💖💖
@ritikpatel6520
@ritikpatel6520 Жыл бұрын
num=int(input("Enter any number: ")) if num%2==0: print(f"{num} is an even number") else: print(f"{num} is an odd number")
@Mystrio0606
@Mystrio0606 2 жыл бұрын
i was watching dbms lectures from 4 years ago so just thought if you are looking soo cute 4 years ago what is like now soo just came around this video and look at you marvelous.btw love your videos
@surya5726
@surya5726 2 жыл бұрын
Mam please make videos on design and analysis of algorithm
@faithobonyo
@faithobonyo Жыл бұрын
Best teacher
@raohammadraza
@raohammadraza Жыл бұрын
thanks Mam good teaching method
@hajarbenzakour6583
@hajarbenzakour6583 Ай бұрын
"""Exercise 6: if statement""" number=int(input("enter your number:")) if (number % 2 ==0 ): print("your number is even") else: print("your number is odd")
@kunaldas5011
@kunaldas5011 11 ай бұрын
no=int(input("enter your no:")) if no%2==0: print("no is even") else: print("no is odd")
@venkatlakshmi-3498
@venkatlakshmi-3498 Жыл бұрын
x=int(input('enter any number')) If(x%2): Print('the number is odd') else: Print('the number is even')
@SubhashSB-gsoc
@SubhashSB-gsoc 8 ай бұрын
it wiil get always even bro give the correct condition
@ValliSurvepalli-eg5pe
@ValliSurvepalli-eg5pe Жыл бұрын
n=int(input("enter any number:")) if n%2==0: print("it is an even number") else: print("it is an odd number")
@vedantdhumak
@vedantdhumak 3 ай бұрын
I used / instead of % the code executed but when I entered 4 it shows odd but when I put % instead of / it shows correct output
@Anagha-gx3rj
@Anagha-gx3rj Жыл бұрын
n=int(input("Enter a number: ")) print(f"U have entered the number {n}.") if n%2==0: print("It is an EVEN number") else: print("It is an ODD number")
@ch.yeshwardhan6194
@ch.yeshwardhan6194 7 ай бұрын
n=int(input("enter a number:")) if 2*n: print("even") else : print("odd")
@harshaharsha6681
@harshaharsha6681 Жыл бұрын
Super 🎉🎉🎉
@ArjunDutta-g6l
@ArjunDutta-g6l 3 ай бұрын
Mam if i give 0 then what will be the output?
@omiseternal
@omiseternal Жыл бұрын
number= int(input("enter the value ? ")) if number % 2 == 0: print("it is even number") else: print("it is odd number")
@MARUTHU_1801
@MARUTHU_1801 6 ай бұрын
user_input = int(input("enter the numerical: ")) if user_input % 2 == 0 : print("entered number is even number.") else: print("you have entered the odd number.") print("thank you!")
@UttamPrakash
@UttamPrakash 10 ай бұрын
num=int(input("Enter your no.:- ")) if (num % 2 ==0): print("even No.") else: print("odd No.")
@makupetrical003
@makupetrical003 8 ай бұрын
number = int(input("Which number do you want to check: ")) if number %2 == 0: print("This is an even number") else: print("This is an odd number")
@maskedtech1
@maskedtech1 7 ай бұрын
a=int(input()) if a%2==0: print("this is even number) else: print("this is even number")
@varunkumar4314
@varunkumar4314 2 жыл бұрын
Ma'am complete course of c++ series have uploaded only 34 lecture in this course
@alok_kr_verma
@alok_kr_verma Жыл бұрын
number=int(input("enter the number you want to check:")) if number%2==0: print("the number is even") else: print("number is odd")
@bhaveshvaishnav633
@bhaveshvaishnav633 Жыл бұрын
Thank you!!
@sharvilpatel1651
@sharvilpatel1651 2 жыл бұрын
Yes
@patilnishanthkumar1855
@patilnishanthkumar1855 Жыл бұрын
num=int(input('enter a number:')) if (num) % 2==0: print('even') else: print('odd')
@sakibshaikh530
@sakibshaikh530 Жыл бұрын
number=int(input("Enter a number :")) if number % 2==0: print("Number is Even") else: print("Number is Odd")
@shameerj-l4i
@shameerj-l4i Жыл бұрын
num = int(input("enter the number is :")) if num % 2 == 0: print("Given number is even ") else: print("Given number is odd ")
@conversewithgod353
@conversewithgod353 28 күн бұрын
numBer = float(input("Enter a number:")) if numBer % 2 == 0: print(f"{numBer} is an even number") else: print(f"{numBer} is an odd number")
@sathwik1408
@sathwik1408 Жыл бұрын
x=int(input("enter a number = ")) if (x%2==0): print(f"{x} is even number") else: print(f"{x} is odd number")
@AkhilGeorge-v7e
@AkhilGeorge-v7e Жыл бұрын
number = input("Enter the number") if int(number) % 2 == 0: print("The entered number is even") else: print("The entered number is odd")
@sidharthkaruvarath2532
@sidharthkaruvarath2532 3 ай бұрын
#find whether its an even/odd number x = int(input("Please enter the number :")) if (x%2)==0: print("It is an even number!!!") else: print("It is an odd number!!!")
@wisdomkekang896
@wisdomkekang896 Жыл бұрын
number=int(input("Enter a Number: ")) if (number%2==0): print("This is an even number") else: print("This numbe is an odd number")
@KandalaHarsh
@KandalaHarsh Жыл бұрын
In which class we to learn this things
@saguide786
@saguide786 Жыл бұрын
number = int(input('enter the number here:')) number_check = number % 2 remainder = number_check if remainder == 0: print('even number') else: print('odd number')
@ssdirections4429
@ssdirections4429 11 ай бұрын
Madam are you able to provide certificate
@sajileee
@sajileee Ай бұрын
EnterNum=int(input("Enter Your Number : ")) NumType= EnterNum % 2 if NumType==0: print(f"Your input value {EnterNum} is a Even Number") else: print(f"Your input value {EnterNum} is a odd Number")
@dharshansp376
@dharshansp376 2 күн бұрын
wow ! nice dress mam 😍
@sravanipattapu1253
@sravanipattapu1253 Жыл бұрын
Mam please complete python series
@muhammadriazaslam7003
@muhammadriazaslam7003 2 жыл бұрын
I love you mam from Pakistan.
@harshaharsha6681
@harshaharsha6681 Жыл бұрын
How she increased the font size while coding.....someone may tell this
@jayaprakash6678
@jayaprakash6678 Жыл бұрын
If somebody ask what about 0, then what we do?🤔
@kumaradarsh5125
@kumaradarsh5125 2 жыл бұрын
Mam ek smart board le lijiye aap acha rahega.
@mera_naam_popat
@mera_naam_popat Жыл бұрын
More than python you r beautiful ❤️
@prudhvijeeja__9461
@prudhvijeeja__9461 11 ай бұрын
a=int(input("Enter a number : ")) if a%2==0: print("you entered an even number") else: print("you entered an odd number")
@KsaikiranReddy-ly5rg
@KsaikiranReddy-ly5rg 4 ай бұрын
Mam in this video 0 is neither odd nor even no mam u did not mention about it mam
@sharifullahsalarzai
@sharifullahsalarzai 2 жыл бұрын
Mam why did you leave C++ tutorial.
@bhumaiahuppu766
@bhumaiahuppu766 Жыл бұрын
Mam we want a pdf of your notes make it sure
@DhanyasahasraNandi
@DhanyasahasraNandi Жыл бұрын
This code works only for integers. How we check for float number's 10.2 is a even number. And this doesn't work for checking float numbers
@anandhukumar6415
@anandhukumar6415 9 ай бұрын
bro a decimal cannot be an even or odd number becos it is not a whole number
@MohammadullahAmin
@MohammadullahAmin Жыл бұрын
thanks for teaching me, or allah ap kho hedayat kary ta ke tom muslim hojaoo or apka agla jaman be kamyab ho. don not sed from me ,this is my pray to allah for you.
@nainaru.sivaramakrishna4968
@nainaru.sivaramakrishna4968 Жыл бұрын
num=int(input("Enter your number:")) rem=num%2 if rem==0: print(f"{num} is even number") else: print(f"{num} is odd number")
@Mahesh.k.v6648
@Mahesh.k.v6648 2 жыл бұрын
Hii mam
@Codewithyashraj
@Codewithyashraj 2 жыл бұрын
Cpp continues
@govindarao331
@govindarao331 2 жыл бұрын
Mam daily increasing Beauty
@codingmaster008
@codingmaster008 2 жыл бұрын
Mam apka bache's ko school ja rahe ye kya ache se padana jaise hume. Unka bi future bright ho apke jaisa.,.🥰🤚👨‍👩‍👦‍👦
@soniyasisodiya8057
@soniyasisodiya8057 2 жыл бұрын
Mam hindi bhi use Kiya kro please 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
@muhammadbhutta1156
@muhammadbhutta1156 Жыл бұрын
number = int(input("Please insert a number : ")) if number%2 == 0: print("This is an Even Number !") else: print("This is an Odd Number !")
@captain4730
@captain4730 2 жыл бұрын
Still it feels same to watch U 🥹🥹
@RamakrishnaAmbati-g1v
@RamakrishnaAmbati-g1v 5 ай бұрын
n=int(input("enetr the number:")) if n%2==0: print("even") else: print("odd")
@Aravindofficial04
@Aravindofficial04 Жыл бұрын
Find = int(input("Enter the number : ")) if Find % 2: print("it is odd number") else: print("it is Even Number")
@SubhashSB-gsoc
@SubhashSB-gsoc 8 ай бұрын
it wiil get always even bro give the correct condition
@AlonePhilic
@AlonePhilic 10 ай бұрын
num = int(input('Enter a number: ')) if num % 2 == 0: print(f'{num} is an even number') else: print(f'{num} is an odd number')
@LingeshhvarenKA
@LingeshhvarenKA 9 ай бұрын
number = int(input("Enter the number you wanted to check : ")) if(number%2==0): print(f"{number} is even") else: print(f"{number} is odd")
@_InFACT42
@_InFACT42 3 ай бұрын
number=int(input("Enter your number: ")) if number%2==0: print(f"{number} is a even number") else: print(f"{number} is an odd number")
@LingeshhvarenKA
@LingeshhvarenKA 17 күн бұрын
num = int(input("Enter a number :")) if (num%2==0): print(f"{num} is even") else : print(f"{num} is odd")
@victorangom
@victorangom 8 ай бұрын
num=int(input("Enter a number: ")) if num%2 == 0: print(f"{num} is an even number") else: print(f"{num} is an odd number")
Nested If Else & elif Statements in Python | Python Tutorials for Beginners #lec26
22:51
If & If Else Conditional Statements in Python | Python Tutorials for Beginners#lec24
18:41
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 81 МЛН
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 120 МЛН
Types of Arguments in Python | Python Tutorials for Beginners #lec61
21:11
Jenny's Lectures CS IT
Рет қаралды 108 М.
Sets in Python | Python Tutorials for Beginners #lec41 Part1
16:00
Jenny's Lectures CS IT
Рет қаралды 92 М.
Python Functions | Python Tutorial for Absolute Beginners #1
30:34
Programming with Mosh
Рет қаралды 1 МЛН
round() function in Python | Python Tutorials for Beginners #lec21
20:34
Jenny's Lectures CS IT
Рет қаралды 122 М.
Input a List using split() Method in Python
8:27
Neso Academy
Рет қаралды 48 М.
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН