×

To install this app on your iPhone, tap Share 🔗 then Add to Home Screen.

06 Introduction to Python Variables

0
62

Basically, Python has no command to Declare a Variable. A Variable is created as soon as you assign any value to it. Whether it is numeric, String, Float, Boolean or any kind.

Variables do not need to be declared with any particular type, and can even change type after they have been set.

*** Variable names in Python are case-sensitive.

A variable can have a short name (like x and y) or a more descriptive name (age, carname, total_volume)

Following are some rules to create a variable name:

  • A variable name must start with a letter or the underscore character
  • A variable name cannot start with a number
  • A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ )
  • Variable names are case-sensitive (age, Age and AGE are three different variables)

Example 01:

x = 5
y = "John"
print(x)
print(y)

Example 02:

x = 4       # x is of type int
x = "Sally" # x is now of type str
print(x)

Example 03:

x = str(3)    # x will be '3'
y = int(3)    # y will be 3
z = float(3# z will be 3.0

type() function:

You can get variable type using type() function.

Example:

x = 5
y = "John"
print(type(x))
print(type(y))

Search
Categories
Read More
Information Technology
世界のトンネル型食器洗浄機市場規模2025-2031:競合状況、需要分析、成長予測
QYResearch株式会社(所在地:東京都中央区)は、最新の調査資料「トンネル型食器洗浄機―グローバル市場シェアとランキング、全体の売上と需要予測、2025~2031」を2025年5月12日よ...
By Qyresearch Jasmine1 2025-05-12 05:32:56 0
Other
Healthcare CRM Market Revenue and Share Study Analysis to 2034
The most recent report published by Vantage Market Research indicates that the "Healthcare CRM...
By Tushar Jane 2025-05-27 05:13:37 0
Other
Benefits of Choosing the Best Homework Helpers for Stress-Free Learning
In an age where academic demands resemble an unrelenting storm, scholars often wrestle...
By Lucy Martin 2025-05-27 08:22:48 0
Other
Airport Retail Market Analysis by Size, Growth, & Research Report (2025–2033) | UnivDatos
According to the UnivDatos analysis, the increasing global air passenger traffic, rising demand...
By Ahasan Ali 2025-05-21 08:38:49 0
Other
Understanding Holistic Dentistry and Its Benefits in Tampa
  Holistic dentistry is a practice that emphasizes the connection between oral health and...
By Andre Rasel 2025-06-05 08:18:10 0