Skip to content

Instantly share code, notes, and snippets.

@alvinwan
Last active July 6, 2021 08:19
Show Gist options
  • Save alvinwan/8286c4aa29d8cc013552bd333c98fd0a to your computer and use it in GitHub Desktop.
Save alvinwan/8286c4aa29d8cc013552bd333c98fd0a to your computer and use it in GitHub Desktop.
skillshare responses
i = 5
while i <= 15:
print(i)
i += 2
def print_list(lst):
for string in lst:
if isinstance(string, str):
print(string)
def generate():
text = "version 1"
print(text)
return "version 2"
text = generate()
print(text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment