❓ Quiz Python
Comprendre le scope des variables en Python.
PYTHONIntermediairescope
20
quiz.py
1
x = 102
3
def fonction():4
x = 205
return x6
7
fonction()8
print(x)