How does Python differentiate local and global variables? code example
Example 1: global var in python
a = input('Hello: ')
if a == 'world':
global b
b = input('Here')
print b
#Prints the input for be as a result
Example 2: global variables python
global x
x=1