Created
November 5, 2016 06:34
-
-
Save Wingless-Archangel/641580d2064aa6af056ecc5ed6908ff5 to your computer and use it in GitHub Desktop.
return the element which less than the input number
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
#!/usr/bin/python3 | |
# 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 5 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. | |
def main(): | |
ref = input("Please enter the reference number : ") | |
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] | |
# for the traditional loop | |
# b = [] | |
# for num in a: | |
# if num < ref: # Extra 3 | |
# b.append(num) # Extra 1. | |
b = [num for num in a if num < ref] # Extra 2 | |
print(b) | |
if __name__=="__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment