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.

reused_outer_loop_variable_py3.py 159B

12345
  1. """Python >= 3 tests for redefining an outer loop's variable."""
  2. for i, *j in [(1, 2, 3, 4)]:
  3. for j in range(i): #[redefined-outer-name]
  4. print(j)