Python in Kannada - Lists Operations, Methods and Functions | Full Course for Beginners - # 5

preview_player
Показать описание
Welcome to the third video of the Python Full Course for Beginners in Kannada! Through this series on Engineering in Kannada, I'm teaching Python from scratch in Kannada to help you build a strong foundation.

Lists are one of the most versatile and widely used data structures in Python, essential for storing and manipulating data. This video, explained entirely in Kannada, will help you understand how to effectively use lists in your Python programs.

✨ RESOURCES ✨

✨ JOIN OUR COMMUNITY ✨
2. Use links in Instagram account Bio to get access to WhatsApp and Telegram community

✨ TIMESTAMPS ✨

Lists in Python- 00:10
List indexing - 6:30
List Operations - 8:58
Slicing the list - 18:11
List functions - 26:11
List Methods - 29:06
Nested lists/Matrices - 31:16

Thanks for Watching!

#pythonkannada #engineeringinkannada #fullcourse #python #programming #codinginkannada
Рекомендации по теме
Комментарии
Автор

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 ❤

Peakpulse_
Автор

💥💥#2.nested list challenge
list=[[1, 2], [3, 4]]
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

krishnan
Автор

Absent due to internals ...
But now present sir...😊

sindubanavasi
Автор

For very Frist time this much excited and curious about learning computer language❤

SinchanaSinchu-zhyn
Автор

💥💥💥# 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']'''

krishnan
Автор

Thank you for the wonderful class bro 😊, waiting for next class❤

googlyappu
Автор

Please do one session about index and positioning

KanchanaThammaiah
Автор

Left and right shifts are soooo easy bro 😊

basavarajkbasva
Автор

bro please make a complete vidio on slicing and manupalation and why we will not consider last index

shashanky
Автор

very impressive to saw this video
next video pls

sushmaganigar
Автор

Day by day very excited...keep teaching bro🎉🎉❤❤

sachinrai
Автор

28:56 iguess string is converted into int data type and then added and prints the output

Boltz-yubn
Автор

after this course please do videos on html css javascript to make websites

samith-ny
Автор

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 ❤💯

Cloudy_sky
Автор

Please try to complete this course as soon as possible ❤

Fun-time
Автор

#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)

rachankumarchettimada
Автор

Bro please make video on chatgpt, bro when you are free please broo

bhuvaneshbhuni