Skip to content

Instantly share code, notes, and snippets.

View woodman420's full-sized avatar

woodman woodman420

View GitHub Profile
@woodman420
woodman420 / list_generator.py
Created October 11, 2020 22:35
This is a list generator created in python as a project to test my current knowledge
i1 = input("First list object: ")
i2 = input("Second list object: ")
i3 = input("Third list object: ")
i4 = input("Fourth list object: ")
i5 = input("Fifth list object: ")
is_list = True
# this is just for error demonstration
# typing error in the first input will cause the list to go invalid
if i1 == "error":