Python Forum
Help printing any items that contains a keyword from a list
Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help printing any items that contains a keyword from a list
#6
Just also wondering how I would go about Adding the last displayed movie from a list to a new list. so for e.g

If the last movie shown on output was
pulp fiction

How would I add this to a list

Would it have something to do with .append ?

This kinda sums up what I am trying to do...

selection = input("Please Select:")
if selection =='sw':
   listb = movies_list
   letter = str(input("Search title starting with the letter: "))
   for movie in movies_list:
       if movie.startswith(letter):
           print(movie)
else:
   print("Unknown Command")

menu()
selection = input("Please Select:")
if selection =='k':
   favlist = list.append(listb)
   print (favlist)
Reply


Messages In This Thread
RE: Help printing any items that contains a keyword from a list - by Liquid_Ocelot - May-06-2017, 04:06 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to parse and group hierarchical list items from an unindented string in Python? ann23fr 1 519 May-23-2024, 05:39 AM
Last Post: Pedroski55
  Collisions for items in a list Idents 3 2,413 Apr-06-2021, 03:48 PM
Last Post: deanhystad
  Removing items in a list cap510 3 2,437 Nov-01-2020, 09:53 PM
Last Post: cap510
  Help with Recursive solution,list items gianniskampanakis 8 3,771 Feb-28-2020, 03:36 PM
Last Post: gianniskampanakis
  Removing items from list slackerman73 8 4,588 Dec-13-2019, 05:39 PM
Last Post: Clunk_Head
  Find 'greater than' items in list johneven 2 4,562 Apr-05-2019, 07:22 AM
Last Post: perfringo
  How to add items within a list Mrocks22 2 2,765 Nov-01-2018, 08:46 PM
Last Post: Mrocks22
  printing list of random generated rectangles Zatoichi 8 7,490 Feb-18-2018, 06:34 PM
Last Post: buran
  How to keep duplicates and remove all other items in list? student8 1 5,047 Oct-28-2017, 05:52 AM
Last Post: heiner55

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020