Horje
python local variables Code Example
python local variables
'''Local variables are those that are defined in a block '''
a = 1 #This is NOT a local variable, this is a global variable
def add():
  b = 1 #This IS a local variable
  print(b)
add()
#If we tried to print(b) outside of the add() function, we would get an error




Python

Related
créer fonction python Code Example créer fonction python Code Example
how to specify variable type in python Code Example how to specify variable type in python Code Example
python os get dir path Code Example python os get dir path Code Example
else statement python list comprehension Code Example else statement python list comprehension Code Example
python remove duplicates from list of dict Code Example python remove duplicates from list of dict Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7