Advertisement
rodolpheg

Untitled

Sep 28th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. a = 0
  2.  
  3. def une_fonction():
  4. global a
  5. a += 1
  6. print(a)
  7.  
  8. une_fonction()
  9. print(a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement