Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created June 25, 2023 08:33
Show Gist options
  • Save stephengruppetta/2df78f38ca6bda3a4b5bacea9a8c2e2a to your computer and use it in GitHub Desktop.
Save stephengruppetta/2df78f38ca6bda3a4b5bacea9a8c2e2a to your computer and use it in GitHub Desktop.
class RandomWalk:
def __init__(self, iterable):
self.values = list(iterable)
captains = RandomWalk(
[
"Pike",
"Kirk",
"Picard",
"Sisko",
"Janeway",
"Riker",
]
)
for captain in captains:
print(captain)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment