The day started to learn python but I searched so many youtube videos to learn python I never seen teaching like you the way your teaching is mind blowing when I started watched your python video i never board to watch your python video you are doing osm jobe keep it up good bless you man ❤
💥💥💥# HOMEWORK # 1.listManipulation list=["book","pencil",46,"lalptop",5] print(list)#printing the list list.append("bike")#added new item to the end of the list list.insert(1,"friend")#added new item to the second position of the list print(list) list.pop(2)#Removing third item from the list print(list) #OUTPUT ''' ['book', 'pencil', 46, 'lalptop', 5] ['book', 'friend', 'pencil', 46, 'lalptop', 5, 'bike'] ['book', 'friend', 46, 'lalptop', 5, 'bike']'''
# HOMEWORK # 1.listManipulation list=["book","pencil",46,"lalptop",5] print(list)#printing the list list.append("bike")#added new item to the end of the list list.insert(1,"friend")#added new item to the second position of the list print(list) list.pop(2)#Removing third item from the list print(list) #OUTPUT ''' ['book', 'pencil', 46, 'lalptop', 5] ['book', 'friend', 'pencil', 46, 'lalptop', 5, 'bike'] ['book', 'friend', 46, 'lalptop', 5, 'bike']'''
Home Work 3: Code my_list = [1, 2, 3, 4, 5] # Create a list of elements my_tuple = tuple(my_list) # # Convert list to tuple my_set = set(my_list) # Convert list to set print("List to Tuple:", my_tuple) print("List to Set:", my_set) my_set.add(6) # adding element to set
Sir do u remember iam that student who told to concentrate on biology student but now i can say that I can manage it is not too tough if we practice more ❤💯
💥💥#2.nested list challenge list=[[1,2],[3,4]] print(f"{list[0]} {list[1]}")#prints the entire matris row by row print(f"The sum of first row is:{sum(list[0])}")#sum of 1st row print(f"The sum of second row is:{sum(list[1])}")#sum of 2nd row #OUTPUT OF 2. [1, 2] [3, 4] The sum of first row is:3 The sum of second row is:7
Bro I checked sum function for different data type . It is working for numbers, boolean datatype and it is not working for string data type, nested list. It is working only when the list contains similar data type.
Day 6 attendance 🙋 👇
The day started to learn python but I searched so many youtube videos to learn python I never seen teaching like you the way your teaching is mind blowing when I started watched your python video i never board to watch your python video you are doing osm jobe keep it up good bless you man ❤
Happy to hear that! ❤️
Day by day 📈@@EngineeringinKannada
Day 6 veryyyy excited 🚀🚀🚀😁😁😁😁
For very Frist time this much excited and curious about learning computer language❤
Great!
dir(list)-->To check the list methods
Very use full topic
Thanks bro v4 completed🧡❤
Absent due to internals ...
But now present sir...😊
🙌❤️
Thank you for the wonderful class bro 😊, waiting for next class❤
💥💥💥# HOMEWORK
# 1.listManipulation
list=["book","pencil",46,"lalptop",5]
print(list)#printing the list
list.append("bike")#added new item to the end of the list
list.insert(1,"friend")#added new item to the second position of the list
print(list)
list.pop(2)#Removing third item from the list
print(list)
#OUTPUT
'''
['book', 'pencil', 46, 'lalptop', 5]
['book', 'friend', 'pencil', 46, 'lalptop', 5, 'bike']
['book', 'friend', 46, 'lalptop', 5, 'bike']'''
Very well explained
Present, and thank you brother
Complete ❤💪
Attendance ❤
You are great bhai ✨
Thanks bhai ❤️
Day by day very excited...keep teaching bro🎉🎉❤❤
#Lec 5 Done ✅
Left and right shifts are soooo easy bro 😊
Attendance😊
Attendance 👍
Very informative ❤
It's is very helpfull
Very helpful
Indexing mele seperate video madi Anna👏👏
"Focus on WIN , not on Competitors💀🗿"
🔥🚀
Present bro❤❤
Present sir....redy to learn
Please do one session about index and positioning
very interesting
Please make separate video on indexing.
Thanks bro😊.....
Thanks brother
Happy learning phase 😊
very impressive to saw this video
next video pls
🙌
28:56 iguess string is converted into int data type and then added and prints the output
Present sir ✋😊
100k soon🎉
Yess ❤️
Thanks🎉
# HOMEWORK
# 1.listManipulation
list=["book","pencil",46,"lalptop",5]
print(list)#printing the list
list.append("bike")#added new item to the end of the list
list.insert(1,"friend")#added new item to the second position of the list
print(list)
list.pop(2)#Removing third item from the list
print(list)
#OUTPUT
'''
['book', 'pencil', 46, 'lalptop', 5]
['book', 'friend', 'pencil', 46, 'lalptop', 5, 'bike']
['book', 'friend', 46, 'lalptop', 5, 'bike']'''
Today present 👋🏻 Day 2
Please try to complete this course as soon as possible ❤
Okayy
Bro you teach EC related topics 😊
Home Work 3: Code
my_list = [1, 2, 3, 4, 5] # Create a list of elements
my_tuple = tuple(my_list) # # Convert list to tuple
my_set = set(my_list) # Convert list to set
print("List to Tuple:", my_tuple)
print("List to Set:", my_set)
my_set.add(6) # adding element to set
print("List to Set after add:", my_set)
6th session ❤🎉
Day 6 present 🚀🔥❤️
Sir do u remember iam that student who told to concentrate on biology student but now i can say that I can manage it is not too tough if we practice more ❤💯
Oh that’s niceee 🙌
AS SIMPLE AS THAT
bro please make a complete vidio on slicing and manupalation and why we will not consider last index
5:40 the voice crack hit hard broo
🥹❤️
@@EngineeringinKannada bro at 23:19 you have bymistakenly said wrong ..about slicing concept, am i correct?
Attendance day 5❤
Day 6 Present bro❤
#Q1
num1=[22,44,55,77,88]
num1.append("66")
print(num1)
num2=[1,2,3,4,5]
num2.insert(2,"7")
print(num2)
num3=[0,9,8,7,6]
num3.remove(8)
print(num3)
#Q2
num4=[0,8,6,4,2]
num4.sort()
print(num4)
num5=[9,7,5,3,1]
num5.reverse()
print(num5)
sir super day :-06 present
Bro please make video on chatgpt ,bro when you are free please broo
Day 6 present bro❤
💥💥#2.nested list challenge
list=[[1,2],[3,4]]
print(f"{list[0]}
{list[1]}")#prints the entire matris row by row
print(f"The sum of first row is:{sum(list[0])}")#sum of 1st row
print(f"The sum of second row is:{sum(list[1])}")#sum of 2nd row
#OUTPUT OF 2.
[1, 2]
[3, 4]
The sum of first row is:3
The sum of second row is:7
Put some more videos in indexing in python with some more examples
Present sir ❤
after this course please do videos on html css javascript to make websites
Day 2 completing 3 video per day 😅
Keep it up
Present anna 😊
indexing vedio please
Part 5 attended
part 5 - "As Simple As That"👍
❤️🔥
Day one
I feel like you're worth my college fees, bro.
😂❤️
Nice guru, but confusion logic of and, or result. But really learning
I am present🎉
print("as simple as that")
🙌
Day 6🎉
Present❤
Day 6 present😊
Indexes topic explain please
Index
Index video madi bruh ❤️
Okayy
Day-6✅
Present sir 🙋
Pop gu and remove gu yan difference bro....???
Index bagge video maadi bro
Day 5❤
Brother exam marks important agutha
Present 😊
Indexing
Yes bro 4👍🏼
Home Work1: Code tuples
item=("Hai", "chandan", "How", "are", "you") # creating 5 element tuple
print(item)
print(item[1:3]) # slicing 2nd & 3rd elememts only
item2=("hai", "sachin", "i", "am","super","thank", "you")#
new_tup=(item + item2)
stng_tup= " ".join(new_tup) # Concatenate the tuple with another tuple for sting
print(stng_tup)
########
num1=(1,2,3,4,5,6)
num2=(18,21,48,56)
new_num= num1+num2 #Concatenate the tuple with another tuple.
print(new_num)
done day 5
Bro I checked sum function for different data type .
It is working for numbers, boolean datatype and it is not working for string data type, nested list.
It is working only when the list contains similar data type.
Yappa ....!! Yen Sakath agi heli kodtira bro 🫡🫡❤❤ clg alli devrane arta agirlilla... niv Kalsi kodta idira .. thank you bro 🫶
Means a lot bro ❤️
@@EngineeringinKannada as simple as that 😅😅😅
Hi bro good evening
Present !
Attendence🙋
Bro adu starting alli item antha type madidre color change agthillla , error thorsthide
Day 6🥳
Bro items.pop() instead of this we can use items.remove().??
Yes we can. But there is a difference. Watch that part againn
Present😊
Present ✋
Bro oops concept madi
Jan 6th inda
sir plz java classes madi
Day 7 attedance
Can you upload 2 videos daily please for python
We don't use commas in matrix