Coding Exercise for Beginners in Python |Exercise 13 | Python Tutorials for Beginners #lec38

preview_player
Показать описание
In this Lecture we have written a Program in Python which uses concepts of Nested list, List Elements accessing, Indexing.

*********************************************

Connect & Contact Me:

*******************************************

More Playlists:

#coding #pythonforbeginners #python #jennyslectures #pythonprogramming #codingquestions
Рекомендации по теме
Комментарии
Автор

A very happy birthday to the best youtube programming teacher🎂🎂🎂

Chris-vtnl
Автор

a lot less complex solution for this problem:
list=[[1, 1, 1], [1, 1, 1], [1, 1, 1]]
row=int(input("enter the row: "))
column=int(input("enter the column: "))
list[row-1][column-1]='X'
print(list[0])
print(list[1])
print(list[2])

astikadarsh
Автор

Mam please continue python series it's my humble request ✍️🙏🙏
Thank you very much ma'am for providing pdfs🔥🔥

venkateswarlugoud
Автор

print("[1 2 3]\n[4 5 6]\n[7 8 9]")
a=int(input("enter at which row you want to store:"))
b=int(input("enter at which column you want to store:"))
list=[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
c=a-1
d=b-1
list[c][d]=int(input("enter the ammount you want to store:"))
print(list[0], list[1], list[2])

deekshithaparasu
Автор

list1=[1, 2, 3]
list2=[4, 5, 6]
list3=[7, 8, 9]
final_list=[List1, List2, List3]
final_list[2][1]='x'
print(list1)
print(list2)
print(list3)

karthikv
Автор

list=[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
a=list[0]
b=list[1]
c=list[2]
print(f" {a} \n {b} \n {c}")
row=input(" enter the row")
column=input("enter the column")
row=int(row)
column=int(column)
x=input("write element you want to insert")

list[row-1][column-1]=x
print(a)
print(b)
print(c)

muhammadshaheerkhan
Автор

I am from biology background but i am addicted to this python 🥰🥰🥰🥰

ManoharR-dikm
Автор

Respected Madam's you're one of the best teacher had never seen. Is there any lecture on AI?

kaiumarrbrima
Автор

Hey Ma'am, small doubt about how the 'x' is stored the location in the matrix? because we haven't assigned the 'x' to the assigned it to the position in row_selected.

adithyaramadas
Автор

mam i did't get that position 0 and 1 how u wrote?

chandupv
Автор

Your series on python has been Very helpful to me, could you kindly keep uploading more videos in here? I know you work very hard for us, i pray that you become the best version of yourself daily 🙏🙏

manfredmasiko
Автор

mam please continue the python series a humble request from a fan of your teaching methodology

garikapatijaswanth
Автор

Ma'am I'm eagerly looking forward to learning Object-oriented programming by You. When you will be coming with that?

tatatea
Автор

I am ❤❤from Bangladesh..and i think you r the best in the world..i always try to follow you..bcz until i follow u my prblms will not solve..

tanbinislam
Автор

Mam you teach amazing, i love your content, you understanding simplest way. mam why haven't you bought a digital board yet, now your YouTube family is more than 1M. I think you should buy a digital board now.

iamsikindarkumar
Автор

How can someone be this good at teaching ! 😍 .
Dislikes might be from some stupids . They r Nothin but a stone in sea
Never take those personally mam . Keep going 🤗

peace
Автор

Beauty with Brain. Thank you mam for graph lectures & all videos❤

raushankumargupta
Автор

print("Enter position")
a=int(input("Enter 1st no. ")
b=int(input("enter 2nd no."))
l=[[1, 1, 1], [1, 1, 1], [1, 1, 1]]
l[a-1][b-1]="X"
print(l[0])
print(l[1])
print(l[2])

stenythankkamraju
Автор

Dear Ma'am, please provide a python class for machine learning and deep learning. It's a humble request.

athiragopalakrishnan
Автор

r=int(input('Enter row number: '))
c=int(input('Enter column number: '))
row=r-1
column=c-1
list=[[1, 1, 1], [1, 1, 1], [1, 1, 1]]
list[row][column]='x'


i had done in this way

Nameyendhukule