global python variablen code example
Example 1: python global variables
global var1
var1 = 'whatever'
Example 2: how to make variable global in python
global variable
variable = 'whatever'
Example 3: global python variablen
def f():
global s
print(s)
s = "Zur Zeit nicht, aber Berlin ist auch toll!"
print(s)
s = "Gibt es einen Kurs in Paris?"
f()
print(s)