Skip to content

Instantly share code, notes, and snippets.

@Tig10
Created June 4, 2020 14:52
Show Gist options
  • Save Tig10/b98a3ba136df03792d852f46537d1fa4 to your computer and use it in GitHub Desktop.
Save Tig10/b98a3ba136df03792d852f46537d1fa4 to your computer and use it in GitHub Desktop.
'''
Take a list, say for example this one:
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
and write a program that prints out all the elements of the list
that are less than 5.
Extras:
1. Instead of printing the elements one by one, make a new list that
has all the elements less than 10 from this list in it and print out this new list.
2. Write this in one line of Python.
3. Ask the user for a number and return a list that contains only elements from the original list a that are smaller than that number given by the user.
'''
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
for item in a:
if item < 10:
print(item)
# Extra 1:
b = []
for item in a:
if item < 10:
b.append(item)
print(b)
# Extra 3:
num = int(input('Enter a number: '))
for item in a:
if item < num:
b.append(item)
print(f'These numbers are all less than {num}:', b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment