This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": |