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
#Take two lists and write a program that returns a list | |
#that contains only the elements that are common between the lists (without duplicates). | |
#Make sure your program works on two lists of different sizes. | |
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] | |
b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] | |
c = [] | |
for tab in range(a, b): | |
for i in range(0, len[tab]): |
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
gfdfgdfgsdfg |
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
name = input("Enter your name: ") | |
age = int(input("What is your age? ")) | |
year = 2017 - age + 100 | |
year = str(year) | |
age = str(age) | |
print("Hey " + name + "! You will turn 100 in " + year) |