Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

func_w0122_py_30.py 177B

123456789101112
  1. """test global statement"""
  2. __revision__ = 0
  3. exec 'a = __revision__'
  4. exec 'a = 1' in {}
  5. exec 'a = 1' in globals()
  6. def func():
  7. """exec in local scope"""
  8. exec 'b = 1'