Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
list1 position = list 2?
#4
list.index() gives you the position within a list.

>>> INPUT=["the", "quick", "brown", "fox", "jumped"]
>>> OUTPUT=["Now", "is", "the", "time", "for"]
>>> word = "fox"
>>> OUTPUT[INPUT.index(word)]
'time'
Reply


Messages In This Thread
list1 position = list 2? - by Nickd12 - Sep-20-2020, 03:46 AM
RE: list1 position = list 2? - by bowlofred - Sep-20-2020, 04:06 AM
RE: list1 position = list 2? - by Nickd12 - Sep-20-2020, 04:15 AM
RE: list1 position = list 2? - by bowlofred - Sep-20-2020, 04:20 AM
RE: list1 position = list 2? - by Nickd12 - Sep-20-2020, 04:25 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  knowing for loop position in a list medic5678 4 671 Jan-31-2025, 04:19 PM
Last Post: perfringo
  List Creation and Position of Continue Statement In Regular Expression Code new_coder_231013 3 2,601 Jun-15-2022, 12:00 PM
Last Post: new_coder_231013
  item = index position - list of list RavCOder 9 5,870 Dec-02-2019, 05:24 PM
Last Post: ThomasL
  Help with code/URGENT/Adding position to register list Laxman 3 4,501 Apr-23-2017, 04:48 PM
Last Post: micseydel

Forum Jump:

User Panel Messages

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