About Lesson
Rules of Python Variables:-
Python में variables बनाते समय निम्नलिखित points को ध्यान रखना चाहिए-
- Variable का नाम letter (A-Z, a-z) या underscore( _ ) से शुरु होना चाहिए।
- किसी variable का नाम number (0-9) से शुरु नहीं हो सकता है।
- एक variable के नाम में alphanumeric characters और underscore ही हो सकता है।
- variables के नाम case sensitive होते है।
- किसी variable और keyword का नाम एक नहीं हो सकता है।
- Variable name में space नही हो सकता।
Rules of Python Variables:-
The following points should be kept in mind while creating variables in Python-
- Variable name should start with letter (A-Z, a-z) or underscore ( _ ).
- The name of a variable cannot start with a number (0-9).
- The name of a variable can only contain alphanumeric characters and underscore.
- Names of variables are case sensitive.
- The name of a variable and keyword cannot be the same.
- Variable name cannot contain space.