🔥Subscribe here : / @kalanchiyamtutorials
🔥Upcoming Live sessions : https://kalanchiyamtutorials.com/live...
🔥Our Website : https://kalanchiyamtutorials.com
Python for Beginner (Tamil)
This video helps to understand Python Data Types in Tamil.
---------------------------------------------------------
Int,float,bool and string
a=10
b=10.0
c=True
print(type(a))
print(type(b))
print(type(c))
d=a+b
print("a+b",d)
f=int(b)
print("f value = ",f)
x="Kalanchiyam"
print(type(x))
x='Kalanchiyam'
print(type(x))
---------------------------------------------------------
#List
lst =[1,2,3,4]
print(type(lst))
thislist = ["apple", "banana", "cherry"]
print(len(thislist))
thislist = ["apple", "banana", "cherry"]
thislist.insert(1, "orange")
print(thislist)
thislist = ["apple", "banana", "cherry"]
thislist.remove("banana")
print(thislist)
thislist = ["apple", "banana", "cherry"]
thislist.pop()
print(thislist)
thislist = ["apple", "banana", "cherry"]
thislist.pop(1)
print(thislist)
--------------------------------------------
#Tuple
thistuple = ("apple", "banana", "cherry")
print(thistuple)
thistuple = ("apple", "banana", "cherry")
print(thistuple[1])
thistuple = ("apple", "banana", "cherry")
print(thistuple[-1])
thistuple = ("apple", "banana", "cherry", "orange", "kiwi", "melon", "mango")
print(thistuple[2:5])
thistuple = ("apple", "banana", "cherry")
print(len(thistuple))
tuple1 = ("a", "b" , "c")
tuple2 = (1, 2, 3)
tuple3 = tuple1 + tuple2
print(tuple3)
----------------------------------------------
#Set
thisset = {"apple", "banana", "cherry"}
thisset.add("orange")
print(thisset)
thisset = {"apple", "banana", "cherry"}
thisset.update(["orange", "mango", "grapes"])
print(thisset)
thisset = {"apple", "banana", "cherry"}
print(len(thisset))
thisset = {"apple", "banana", "cherry"}
thisset.remove("banana") # If not exist will throw error
print(thisset)
thisset = {"apple", "banana", "cherry"}
thisset.discard("banana")# If not exist will not throw error
print(thisset)
thisset = {"apple", "banana", "cherry"}
x = thisset.pop()
print(x)
print(thisset)
set1 = {"a", "b" , "c"}
set2 = {1, 2, 3}
set3 = set1.union(set2)
print(set3)
-----------------------------------------------------
#Dictionary
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
print(thisdict)
x = thisdict["model"]
print(x)
x = thisdict.get("model")
print(x)
thisdict["year"] = 2018
print(thisdict)
print(len(thisdict))
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
thisdict.pop("model")
print(thisdict)
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
mydict = thisdict.copy()
print(mydict)
-----------------------------------------------------
python,learn python,python tutorial,python programming,python ,python for beginners,python basics,python course,coding python,python projects,python language,python full course,python tutorial for beginners,python web,why python,web python,python ide,python tips,pyhton,python nedir,python loops,python lists,python in tamil, learn python in tamil, python tutorial in tamil, python tutorial for beginners in tamil, how to learn python in tamil, python in tamil language,python notes in tamil, Python Data Types, Python Data Types in tamil,python in tamil, learn python in tamil, python tutorial in tamil, python tutorial for beginners in tamil, how to learn python in tamil, python in tamil language,python notes in tamil,python beginners tutorial | introduction # python tutorial in tamil,python tamil tutorial,python in tamil,python tutorial for beginners in tamil,python tutorial in tamil,python language in tamil,purpose of python in tamil,advantages of python in tamil,histrory of python in tamil,features of python in tamil,jobs fot python,companies used python,importance of python in tamil,best python tutorial video
Python Beginner Tutorials : 07- Python Data Types in Tamil
En esta página del sitio puede ver el video en línea Data Types in Python|Python Data Types for beginners|Python Data Types Tutorial|Kalanchiyam de Duración hora minuto segunda en buena calidad , que subió el usuario Yuvaraj K 28 marzo 2020, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 83 veces y le gustó 3 a los espectadores. Disfruta viendo!