Important Notice:

Course Content
Accepting Input from the Console
0/1
Introduction to Python (Chapter-3) M3-R5.1
About Lesson
Rules of Python Variables:-

                     Python में variables बनाते समय निम्नलिखित points को ध्यान रखना चाहिए-

  1. Variable का नाम letter (A-Z, a-z) या underscore( _ ) से शुरु होना चाहिए।
  2. किसी variable का नाम number (0-9) से शुरु नहीं हो सकता है।
  3. एक variable के नाम में alphanumeric characters और underscore ही हो सकता है।
  4. variables के नाम case sensitive होते है।
  5. किसी variable और keyword का नाम एक नहीं हो सकता है।
  6. Variable name में space नही हो सकता।
Rules of Python Variables:-

The following points should be kept in mind while creating variables in Python-

  1. Variable name should start with letter (A-Z, a-z) or underscore ( _ ).
  2. The name of a variable cannot start with a number (0-9).
  3. The name of a variable can only contain alphanumeric characters and underscore.
  4. Names of variables are case sensitive.
  5. The name of a variable and keyword cannot be the same.
  6. Variable name cannot contain space.
error: Content is protected !!