Coding Exercise for Beginners in Python with solution | Exercise 24 | Python for Beginners #lec70

preview_player
Показать описание
In this lecture we will discuss a python program io implement nested dictionaries into a list.

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

Connect & Contact Me:

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

More Playlists:

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

You are doing an amazing job with your videos!😍✌ Thank you for putting in the time and effort to create such a valuable resource.

MyCodingDiary
Автор

Mam please upload videos on machine learning and deep learning

kumud
Автор

mam please suggest a book for python for beginner
please reply me mam😊

ffprogamers
Автор

Samjh me nai aa raha h lekin dekh kr acha laga❤ need more lectures....

RoshanKumar-vdws
Автор

Mam please upload videos fast taki jaldi jaldi python khatam kar sake ham

pushkarpallav
Автор

How to learn coding on by writing methods

rohitnagenwar
Автор

Madam could you please recommend a best book for python

decentboys
Автор

I did without define a function is that right ?

basharanwr
Автор

def new_student(name, roll_no, age, course) :
student_data.append({"name":name, "roll_no":roll_no, "age":age, "corse":course})
student_data=[]
new_student("vijay", 2, 12, "PYTHON")
print(student_data)

vandainff
Автор

Mam 100 200 jada lelo lekin c++ chalu kar do

akhil
Автор

Mam can you teach us class 12 cs in hindi chanel plss (book name computer science with python class 12 sumita arora)🙏🙏🙏🙏🙏🙏🙏

Paramanandabonia
Автор

Please 🙏🥺 make video on computer hacking

rohitnagenwar
Автор

💕I love your eyes so much, taking eyes you have

chamara
Автор

append key does not working in dictionary

antonybilgates
Автор

def add_new(**a):
student_data.append(a)
print(student_data)
add_new(name="shyam", rollno=23, age=18, course="c++")
instead of assigning positional arguments ive applied arbitary keyword argumnets

rxpnjis
Автор

yaar tum kitni cute ho
sending love from lahroe

syed
Автор

Hello Mam, Hope you are well..
Why we didnt get full playlist on DAA??
Please give an update on DAA...PLEASE MAM

hasanmahmud
Автор

what about this it is easy


student_data=[
{
"name":"ram",
"roll_no":10,
"age":20,
"course":"python"
},
{
"name":"mohan",
"roll_no":20,
"age":22,
"course":"java"
}
]

def add_new_student(name, roll_no, age, course):
student_data.append(
{
"name":name,
"roll_no":roll_no,
"age":age,
"course":course,
}
)


add_new_student("lucky", 12, 19, "python")
print(student_data)

Lucky_truth
Автор

I'm plumber but why I'm watching this

pluggedin
Автор

# Guys run this same code as mam discussed to us :-
student_data= [{"name":"ram", "roll_no":10, "age":20, "course":"python"},
{"name":"mohan", "roll_no":20, "age":22, "course":"Java"}]
def new_students(name, roll_no, age, course):
new_dict= {} # Empty dictionary created
new_dict["name"]= name
new_dict["roll_no"]= roll_no
new_dict["age"]= age
new_dict["course"]= course


new_students(name="shyam", roll_no= 22, age=18, course="C++")
new_students(name="adamya", roll_no= 22, age=24, course="Mojo")
print(student_data)

adamyagogreen