AgerNic.com
WEB DEVELOPER SITE, HTML, CSS, PHP, SQL

Python Variables and Types


Python Tutorial » Python Variables and Types

A Python variable is a reserved memory location to store values.

Python has no command for declaring a variable.

A variable is created the moment you first assign a value to it.


Example:
x = 24
y = "Werner"
print(x)
print(y)
Output:
24
Werner

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

Example:
x = 12       # x is integer
x = "Werner"  # x is now is type str
print(x)
Output:
Werner


Get the Type - examples


You can get the data type of a variable with the type() function.

Example:
x = 24
y = "Werner"
print(type(x))
print(type(y))
Output:
<class 'int'>
<class 'str'>


Python Single or Double Quotes?

String variables can be declared either by using single or double quotes:

Example:
z = "MariAnn"
print(z)
# is the same as
z =  'MariAnn'
print(z)
#double quotes are the same as single quotes:
Output:
MariAnn
MariAnn

Python variables Case-Sensitive


Variable names are case-sensitive.

Example:
a = 126
A =  "Saandy"
#A will not overwrite a
Output:
126
Saandy




Variable type, Python3 variable, Set variable, Print variable in Python, How to input a variable, Casting, Operations
Python Variables and Types - python

Online Editor
ONLINE EDITOR

news templates


COLOR PICKER

news templates
This tool makes it easy to create, adjust, and experiment with custom colors for the web.


HTML Templates
news templates
Magnews2 is a modern and creative free magazine and news website template that will help you kick off your online project in style.


CSS HTML Layout
news templates
Find here examples of creative and unique website layouts.


Free CSS HTML Menu
news templates
Find here examples of creative and unique website CSS HTML menu.


0
Online Editor
ONLINE EDITOR

news templates


COLOR PICKER

news templates
This tool makes it easy to create, adjust, and experiment with custom colors for the web.


HTML Templates
news templates
Magnews2 is a modern and creative free magazine and news website template that will help you kick off your online project in style.


CSS HTML Layout
news templates
Find here examples of creative and unique website layouts.


Free CSS HTML Menu
news templates
Find here examples of creative and unique website CSS HTML menu.