Google News
logo
Python - Interview Questions
What is Python Variables ?
Python variables are the most powerful features of a programming language is the ability to manipulate variables. A variable is a name that refers to a value. An  assignment statement creates new variables and gives them values.

Ex :
>>> name = 'Free Time Learning'
>>> x = 120
>>> value = 91.125784037
Advertisement