Skip to content

Instantly share code, notes, and snippets.

@azdafirmansyah
Last active November 30, 2017 06:18
Show Gist options
  • Save azdafirmansyah/7ee1cf2e6b6d6490bc07e4fe87851343 to your computer and use it in GitHub Desktop.
Save azdafirmansyah/7ee1cf2e6b6d6490bc07e4fe87851343 to your computer and use it in GitHub Desktop.

Revisions

  1. azdafirmansyah revised this gist Nov 30, 2017. 1 changed file with 11 additions and 0 deletions.
    11 changes: 11 additions & 0 deletions Ex3List.py
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,16 @@
    # Exercise URL : http://www.practicepython.org/exercise/2014/02/15/03-list-less-than-ten.html
    '''
    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:
    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.
    Write this in one line of Python.
    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.
    '''
    list_original = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]

    num = int(input("Input number : "))
  2. azdafirmansyah created this gist Nov 30, 2017.
    10 changes: 10 additions & 0 deletions Ex3List.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    # Exercise URL : http://www.practicepython.org/exercise/2014/02/15/03-list-less-than-ten.html

    list_original = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]

    num = int(input("Input number : "))
    list_new = []
    for i in a:
    if i <= num:
    list_new.append(i)
    print(list_new)