Part 5 | Python if...else Statement | Python Malayalam Tutorial Series

preview_player
Показать описание
This is the fifth video of our "Python Malayalam Tutorial Series". In this tutorial, we are explaining more about Python if...else Statement

Python Malayalam Tutorial Series:

Installation :

Part 1:

Part 2:

Part 3:

Part 4:

Connect with us:
Рекомендации по теме
Комментарии
Автор

Nice explain aanu bro..njan python learn cheyyan start cheythuu. Njan ningalude course aanu follow cheyyunathu. Very helpful. Continue doing this...👍👍♥️

alwinsaju
Автор

Age=int(input("Enter your age:"))
if Age>=18:
print('You are Major citizen')
else:
print('you are Minor citizen')

vishnumuraly
Автор

a= int(input("enter the number:"))

if a %2==0:
print("it is even")

else:
print("it is odd")

SibiBJohn
Автор

This is what I am looking for. Thank you

raghir
Автор

age = 18

if age >= 18:
print("Major")

else:
print("Minor")

muhammadshanid
Автор

number = 21

if number%2 == 0:
print("Even")

else:
print("Odd")

muhammadshanid
Автор

Input:-

number=21
if(number>9):
print("the number is double digit")
else:
print("the number is single digit")


Output:-

the number is double digit

he
Автор

Input:-

Age=25
If(Age>=18):
print("Major")
else:
print("Minor")


Output :-

Major

he
Автор

number=24
if number%2==0:
print("number is even")
else:
print("Number is odd")

anirudhpm
Автор

number=int(input("ENTER A NUMBER:"))
if number<=9:
print("NUMBER IS SINGLE DIGIT")
elif number<100:
print("NUMBER IS DOUBLE DIGIT")
else:
print("THE NUMBER IS 3, 4, 5....N DIGIT")


program to find single digit or two digit numbers

abin
Автор

age=22
if age>=18:
print("major")
else:
print("minor")

anirudhpm
Автор

Num=int(input("Enter a number:"))
if Num%2 ==0:
print(f'{Num} is Even number')
else:
print(f"{Num} is Odd number")

vishnumuraly
Автор

a=input("Enter the Value of A :")
b=input("Enter the Value of B :")
c=input("enter the Value of C :")

if (a>b) and (a>c):
print("A is Greatest Number", a)
elif (b>a) and (b>c):
print("B is Greatest Number", b)
elif (c>b) and (c>a):
print("C is Greatest Number", c)

getting wrong answer when I run

dileeppushpangadan
join shbcf.ru