Sign in
fuchsia
/
third_party
/
github.com
/
python
/
mypy
/
3d456062382e2e5bc230bc3db488b04055c8b5be
/
.
/
test-data
/
samples
/
for.py
blob: f7eeed4efbe6f4d896e316bf2e58f02709b4cb2d [
file
] [
log
] [
blame
]
import
typing
friends
=
[
'john'
,
'pat'
,
'gary'
,
'michael'
]
for
i
,
name
in
enumerate
(
friends
):
print
(
"iteration {iteration} is {name}"
.
format
(
iteration
=
i
,
name
=
name
))