Created
November 28, 2019 11:48
-
-
Save ShadowofZeus/77dfeb524e2d7a50f8b8d8dc2dd598c4 to your computer and use it in GitHub Desktop.
Exercise-5
This file contains hidden or 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
""" | |
Learning points for me: | |
Lists and sets(unique elements) | |
""" | |
a_list = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] | |
b_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] | |
new_list=[] | |
#overlap=int(input("Enter a number between 1 and 13: ")) | |
print("Intersecting Numbers are:") | |
for item_a in a_list: | |
if item_a in b_list: | |
#print(item_a) to check what is being printed out | |
new_list.append(item_a) | |
else: | |
pass | |
new_set=set(new_list) | |
print(new_set) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment