Sign in
fuchsia
/
third_party
/
github.com
/
python
/
mypy
/
refs/heads/upstream/pypytest
/
.
/
test-data
/
samples
/
fib.py
blob: 26248c866b1f868bb047b78d69ede7fa5703629d [
file
] [
log
] [
blame
] [
edit
]
import
typing
parents
,
babies
=
(
1
,
1
)
while
babies
<
100
:
print
(
'This generation has {0} babies'
.
format
(
babies
))
parents
,
babies
=
(
babies
,
parents
+
babies
)