Python Forum
Counting numbers in other lines
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Counting numbers in other lines
#5
This is homework so it's about learning.

There is requirement to use str.startswith(). In order to get help fire up interactive interpreter and:

>>> help(str.startswith)
Help on method_descriptor:

startswith(...)
    S.startswith(prefix[, start[, end]]) -> bool

    Return True if S starts with the specified prefix, False otherwise.
    With optional start, test S beginning at that position.
    With optional end, stop comparing S at that position.
    prefix can also be a tuple of strings to try.
Now you know what startswith does. Pending on other requirements you have not disclosed there are several avenues to proceed. You can start at specific index (if content before : is always the same); you can split, strip and provide tuple of numbers to check whether reminder starts with number etc, etc.
LewAlbert likes this post
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Messages In This Thread
Counting numbers in other lines - by LewAlbert - Dec-11-2020, 11:50 AM
RE: Counting numbers in other lines - by LewAlbert - Dec-11-2020, 12:36 PM
RE: Counting numbers in other lines - by deanhystad - Dec-11-2020, 02:54 PM
RE: Counting numbers in other lines - by LewAlbert - Dec-12-2020, 06:09 PM
RE: Counting numbers in other lines - by perfringo - Dec-11-2020, 04:31 PM
RE: Counting numbers in other lines - by deanhystad - Dec-12-2020, 07:38 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Random Generator: From Word to Numbers, from Numbers to n possibles Words Yamiyozx 2 1,526 Jan-02-2023, 05:08 PM
Last Post: deanhystad
  Convert list of numbers to string of numbers kam_uk 5 3,134 Nov-21-2020, 03:10 PM
Last Post: deanhystad
  Regular Expressions in Files (find all phone numbers and credit card numbers) Amirsalar 2 4,188 Dec-05-2017, 09:48 AM
Last Post: DeaD_EyE

Forum Jump:

User Panel Messages

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