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.
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
"""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")
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!")
number = int(input('enter the number here:')) number_check = number % 2 remainder = number_check if remainder == 0: print('even number') else: print('odd number')
#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!!!")
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")
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.
Mam I'm totally depends on you u r best and complete teacher for programming plzz upload fast python exercises 🙂✌🏻
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.
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
Wow!!! Coding is easy😢😱😮😊. Great madam.
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")
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")
Thankyou your teaching amizing❤
Super mam💖💖
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")
x=int(input('enter any number'))
If(x%2):
Print('the number is odd')
else:
Print('the number is even')
it wiil get always even bro give the correct condition
Best teacher
"""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")
thanks Mam good teaching method
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!")
no=int(input("enter your no:"))
if no%2==0:
print("no is even")
else:
print("no is odd")
n=int(input("enter a number:"))
if 2*n:
print("even")
else :
print("odd")
n=int(input("enter any number:"))
if n%2==0:
print("it is an even number")
else:
print("it is an odd number")
number=int(input("Enter a number :"))
if number % 2==0:
print("Number is Even")
else:
print("Number is Odd")
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")
num=int(input("Enter your no.:- "))
if (num % 2 ==0):
print("even No.")
else:
print("odd No.")
a=int(input())
if a%2==0:
print("this is even number)
else:
print("this is even number")
number= int(input("enter the value ? "))
if number % 2 == 0:
print("it is even number")
else:
print("it is odd number")
number = int(input('enter the number here:'))
number_check = number % 2
remainder = number_check
if remainder == 0:
print('even number')
else:
print('odd number')
x=int(input("enter a number = "))
if (x%2==0):
print(f"{x} is even number")
else:
print(f"{x} is odd number")
number=int(input("enter the number you want to check:"))
if number%2==0:
print("the number is even")
else:
print("number is odd")
Mam please make videos on design and analysis of algorithm
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")
number=int(input("Enter a Number: "))
if (number%2==0):
print("This is an even number")
else:
print("This numbe is an odd number")
Super 🎉🎉🎉
num=int(input('enter a number:'))
if (num) % 2==0:
print('even')
else:
print('odd')
#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!!!")
I love you mam from Pakistan.
number = input("Enter the number")
if int(number) % 2 == 0:
print("The entered number is even")
else:
print("The entered number is odd")
num = int(input("enter the number is :"))
if num % 2 == 0:
print("Given number is even ")
else:
print("Given number is odd ")
Thank you!!
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")
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
Ma'am complete course of c++ series have uploaded only 34 lecture in this course
More than python you r beautiful ❤️
Yes
Mam if i give 0 then what will be the output?
Madam are you able to provide certificate
a=int(input("Enter a number : "))
if a%2==0:
print("you entered an even number")
else:
print("you entered an odd number")
In which class we to learn
this things
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")
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.
Mam please complete python series
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
bro a decimal cannot be an even or odd number becos it is not a whole number
Mam ek smart board le lijiye aap acha rahega.
If somebody ask what about 0, then what we do?🤔
Mam why did you leave C++ tutorial.
Mam in this video 0 is neither odd nor even no mam u did not mention about it mam
Mam apka bache's ko school ja rahe ye kya ache se padana jaise hume. Unka bi future bright ho apke jaisa.,.🥰🤚👨👩👦👦
How she increased the font size while coding.....someone may tell this
Mam we want a pdf of your notes make it sure
Hii mam
Cpp continues
Mam daily increasing Beauty
number = int(input("Please insert a number : "))
if number%2 == 0:
print("This is an Even Number !")
else:
print("This is an Odd Number !")
Mam hindi bhi use Kiya kro please 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
Still it feels same to watch U 🥹🥹
n=int(input("enetr the number:"))
if n%2==0:
print("even")
else:
print("odd")
Find = int(input("Enter the number : "))
if Find % 2:
print("it is odd number")
else:
print("it is Even Number")
it wiil get always even bro give the correct condition
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')
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")
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")
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")