Basics 7 - Multi words variable name

Опубликовано: 22 Июнь 2026
на канале: Coding in Tamil
14
2

Welcome to my channel!

In this video, we will learn about multi words variable name in Python — the most basic program for every beginner.

This video is perfect for:
Beginners who are new to programming
Students starting Python
Anyone interested in coding

What you will learn:
What is multi words variable name
what are the types?


Code used in this video:
1.camel case:
myVar="hello"
print(myVar)
2.pascal case:
MyVarName="subscribers"
print(MyVarName)
3.snake case:
my_var_name="welcome"
print(my_var_name)

If you found this video helpful, don’t forget to:
👍 Like
📩 Share
🔔 Subscribe for more coding tutorials

Stay tuned for more simple and easy programming videos!

#Python #CodingForBeginners #LearnPython #Programming