Python Beginner Tutorials : 04- Python Operators (Assignment Operators) in Tamil

preview_player
Показать описание


Python for Beginner (Tamil)
This video helps to understand python operators.

Python Beginner Tutorials : 04- Python Operators (Assignment Operators) in Tamil

Source Code:

#Assignment Operators

a = 21
b = 10
c = 0

c = a + b
print("Line 1 - Value of c is ", c)

c += a # c=c+a
print("Line 2 - Value of c is ", c )

c *= a# c=c*a
print("Line 3 - Value of c is ", c )

c /= a# c=c/a
print("Line 4 - Value of c is ", c )

c %= a# c=c%a
print("Line 5 - Value of c is ", c)

c **= a# c=c**a
print("Line 6 - Value of c is ", c)

c //= a# c=c//a
print("Line 7 - Value of c is ", c)

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 Assignment operators, Python Assignment operators in tamil
Рекомендации по теме
visit shbcf.ru