Part 2 | Lists,Control Statements | Python Malayalam Tutorial For Beginners

preview_player
Показать описание
24/7 FREE Telegram Support! Sign Up Now:
Best Malayalam python tutorial.

Link to 100K Coding Challenge:

00:45 List
09:17 control statements
09:56 if sample program
16:08 while Loop
21:19 for Loop
26:46 Range
27:39 multiplication Table printing
29: 42 Break, continue

About us:

Subscribe to Kerala's top tech-career YouTube channel and gain access to free programming tutorials and tech-career videos in Malayalam. This channel will help you gain skills and knowledge to build a high-income career in the IT field.

Enroll in our 7-month offline training program, 'Brocamp', to learn coding and other skills in an office environment by paying the training fee after placement.

To know more about Brocamp, Visit:

For any inquiries & updates:
Call/Whatsapp us at 7034395811

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

menu ={1:'Tea', 2:'Coffe', 3:'Lime', 4:'Shake' }
print(menu)
choice = int(input('Enter your choice: '))
if (choice>4) or (choice<=0) :
print("invalid Choice")
else :
print("You have odered: "+menu[choice])

justingeorge
Автор

we can replace the characters in the string
eg: a="Hello world"
print(a.replace("H", "j"))

bibinangello
Автор

list = {"1: biriya 2: porotta 3: chapatti 4: alfam"}
print(list)
choice=int(input("chhoice an item"))
if choice == 1:
print("ur selected biriyanoi")
elif choice == 2:
print("ur choce poratta")
elif choice==3:
print("ur choice is chappati")
elif choice==4:
print("u choouce alfam")
else:
print("wrong choice")

alenrenny
Автор

Num=int(input("Multiplication table: "))
for i in range(1, 11):
print(Num, ' ×', i, '=', Num*i)

iruthiksankar
Автор

# Function to demonstrate printing pattern triangle
def triangle(n):
# number of spaces
k = 2 * n - 2

# outer loop to handle number of rows
for i in range(0, n):

# inner loop to handle number spaces
# values changing acc. to requirement
for j in range(0, k):
print(end=" ")

# decrementing k after each loop
k = k - 1

# inner loop to handle number of columns
# values changing acc. to outer loop
for j in range(0, i + 1):
# printing stars
print("* ", end="")

# ending line after each row
print("\r")

# Driver Code


n = 5
triangle(n)

fhgtfghgfg
Автор

row = int(input("Enter no of rows : "))
a = " * "
stars_count = 1
while row > 0:
print(" " * row + a * stars_count)
row -= 1
stars_count += 1



OUTPUT

Enter no of rows : 5
*
* *
* * *
* * * *
* * * * *

Process finished with exit code 0

adarsh
Автор

I spend lot of time for multiplication
Later u did that in a single step 😃
Nothing to say
Perfect ok

shinask
Автор

Pyramid using for loop


n = int(input("enter the limit"))
res = ""
c = 1
for i in range(1, n+1):
for j in range(i, n + 1):
if j < n:
res = res + " "
else:
for k in range(1, c+1):
res = res + "* "
c = c + 1
res = res + "\n"
print(res)

authentic
Автор

row=int(input("Enter the row:"))
a=" * "
count=1
while row>0:
print(" "*row+a *count)
row=row-1
count=count+1
else:
print("Pyramid is NOT print.... ")

SREELAKSHMIC-cknh
Автор

menu=["1.oonu", "2.biriyani", "3.chicken", "4.porotta"]
print(menu)
list=int(input("select item"))
if list==1:
print("selected item is oonu")
elif list==2:
print("selected item is biriyani")
elif list==3:
print("selected item is chicken")
elif list==4:
print("selected item is porotta")
else:
print("wrong")

vismaya
Автор

menu=["1 for puttu", "2 for cutlet", "3 for jamun", "4 for biriyani", "5 for neychor"]
for x in menu:
print(x)
menu=int(input("enter your choice"))
if menu==1:
print("you have selected puttu")
elif menu==2:
print("you have selected cutlet")
elif menu==3:
print("you have selected jamun")
elif menu==4:
print("you have selected biriyani")
elif menu==5:
print("you have selected neychor")
else:
print("not available")

aqilam
Автор

mul=int(input ("enter a number to display the multiplication table:"))
last=int(input("enter the last point:"))
for i in range(1, last+1):
print(i, "*", mul, "=", i *mul)

aswins
Автор

30 minutes nte ee video kandittum cheythittum kazhiyumbol 2 hours eduthu....
Good teaching sir....

sagarganesh
Автор

multiple = int(input('Which numbers Multiplication table you needed :'))
lines = int(input('To how much you need the table of ' + str(multiple) + ' :'))
for x in range(1, lines + 1):
print(str(x)+' x '+str(multiple)+' = '+str(multiple*x))

JobinSelvanose
Автор

foodmenu =["1: mandhi", "2: biriyani", "3: sulaimani", "4: chapathi", "5: porotta"]
print(foodmenu)
item= int(input())
if ((item<6 and item>0)):
print(foodmenu[item-1])
else:
print("invalid seelection")

imrankm
Автор

x=int(input("enter multiplication table required"))
y=int(input("enter range required"))
for y in range (1, y+1):
print(x*y)

akhilk
Автор

28:13
num=int(input("Enter a number to print its multipiction table:"))
end=int(input("Till how many numbers you need multiplication table of "+str(num)+":"))

for x in range(1, end+1):
print(str(num) + "x" + str(x) + "=" + str(num * x))

colorfull
Автор

Sir program to print the multiplication Table:
num = int(input("Enter the number: "))
n = int(input("Enter Range"))

print("Multiplication Table of", num)
for i in range(1, n+1):
print(num, "X", i, "=", num * i)

abhishekmohan
Автор

num=int(input("Enter the multipled number:"))
for i in range(1, 11):
value=num *i
print(i, "x", num, "=",value)

SREELAKSHMIC-cknh
Автор

Multiplication Table
digit = int(input("Enter a number for generating multiplication table: "))
limit = int(input("Enter the limit: "))
for x in range(1, limit+1):
print(str(digit)+" * "+str(x)+" = "+str(digit*x))

justingeorge