Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Python Expend and Reverse a Generator
HasteBin0
Jul 31st, 2020
2,278
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
Python
0.18 KB
| None
|
0
0
raw
download
clone
embed
print
report
def
gen_reversed
(
sequence:
iter
)
-
>
iter
:
s
=
iter
(
sequence
)
try
:
x
=
next
(
s
)
except
StopIteration
:
return
yield
from
gen_reversed
(
s
)
yield
x
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
RequestException: error with request
Python | 1 hour ago | 3.46 KB
Testeonewlissta
JSON | 1 hour ago | 2.74 KB
smartQuary computercraft
Lua | 1 hour ago | 16.89 KB
PersonalAccessToken.php
PHP | 2 hours ago | 1.43 KB
Homework45
C# | 2 hours ago | 14.13 KB
AmmoLimiter.reds
Lua | 2 hours ago | 30.15 KB
Percent_Lifetime_Remain for /dev/sdl
Bash | 3 hours ago | 7.73 KB
Halazia CSS
CSS | 4 hours ago | 2.45 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!