Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Find _ in a list
#8
(Dec-01-2020, 04:51 PM)bowlofred Wrote:
import bisect

target = 100
sorted_list = [1, 2, 5, 6, 100, 102, 110, 140, 145]
pos = bisect.bisect_left(sorted_list, target) # where to insert, so the number less than is to the left.
# Beware of negative if you asked for a number less than any in the list
print(f"Greatest number less than {target} is at position {pos-1} with value {sorted_list[pos-1]}")
Output:
Greatest number less than 100 is at position 3 with value 6
And what if my target is 100 and there is no 100 in the list, so I want to take the closest number to 100 that is smaller than 100?
Reply


Messages In This Thread
Find _ in a list - by 1234 - Nov-30-2020, 04:31 PM
RE: Find _ in a list - by deanhystad - Nov-30-2020, 04:44 PM
RE: Find _ in a list - by 1234 - Nov-30-2020, 07:21 PM
RE: Find _ in a list - by deanhystad - Nov-30-2020, 08:16 PM
RE: Find _ in a list - by bowlofred - Nov-30-2020, 08:36 PM
RE: Find _ in a list - by 1234 - Dec-01-2020, 03:19 PM
RE: Find _ in a list - by bowlofred - Dec-01-2020, 04:51 PM
RE: Find _ in a list - by 1234 - Dec-01-2020, 05:45 PM
RE: Find _ in a list - by bowlofred - Dec-01-2020, 05:56 PM
RE: Find _ in a list - by 1234 - Dec-01-2020, 06:33 PM
RE: Find _ in a list - by deanhystad - Dec-01-2020, 05:48 PM
RE: Find _ in a list - by 1234 - Dec-01-2020, 06:35 PM
RE: Find _ in a list - by bowlofred - Dec-01-2020, 07:13 PM
RE: Find _ in a list - by deanhystad - Dec-01-2020, 07:05 PM
RE: Find _ in a list - by 1234 - Dec-01-2020, 07:20 PM
RE: Find _ in a list - by bowlofred - Dec-01-2020, 07:53 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Program to find Mode of a list PythonBoy 6 1,122 Sep-12-2023, 09:31 AM
Last Post: PythonBoy
  find random numbers that are = to the first 2 number of a list. Frankduc 23 3,261 Apr-05-2023, 07:36 PM
Last Post: Frankduc
  Find (each) element from a list in a file tester_V 3 1,242 Nov-15-2022, 08:40 PM
Last Post: tester_V
  read a text file, find all integers, append to list oldtrafford 12 3,622 Aug-11-2022, 08:23 AM
Last Post: Pedroski55
  find some word in text list file and a bit change to them RolanRoll 3 1,552 Jun-27-2022, 01:36 AM
Last Post: RolanRoll
  How to find the second lowest element in the list? Anonymous 3 2,032 May-31-2022, 01:58 PM
Last Post: Larz60+
  Python Program to Find the Total Sum of a Nested List vlearner 8 4,947 Jan-23-2022, 07:20 PM
Last Post: menator01
  Find the highest value of a list Menthix 4 1,903 Oct-29-2021, 02:32 PM
Last Post: Menthix
  Find Common Elements in 2 list quest 4 2,774 Apr-14-2021, 03:57 PM
Last Post: quest
  List of error codes to find (and count) in all files in a directory tester_V 8 3,735 Dec-11-2020, 07:07 PM
Last Post: tester_V

Forum Jump:

User Panel Messages

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