File: E74.py

package info (click to toggle)
pycodestyle 2.12.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 624 kB
  • sloc: python: 4,697; makefile: 135; sh: 12
file content (13 lines) | stat: -rw-r--r-- 277 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#: E741:1:8
lambda l: dict(zip(l, range(len(l))))
#: E741:1:7 E704:1:1
def f(l): print(l, l, l)
#: E741:2:12
x = (
    lambda l: dict(zip(l, range(len(l)))),
)
#: E741:2:12 E741:3:12
x = (
    lambda l: dict(zip(l, range(len(l)))),
    lambda l: dict(zip(l, range(len(l)))),
)