Python Forum
Finding line numbers starting with certain string
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Finding line numbers starting with certain string
#1
Hi people,

I am trying to get line numbers depending if the line starts with "T.C." however list is empty and printing the number list gives me nothing.

input receives the text there are no problems with that however if returns nothing even tough text has strings starting with "T.C."


def verial():
    input1 = text1.get("1.0",'end-1c')
   

    satırsayısı=0
    isimsatırlistesi=list()
    for line in input1:
        satırsayısı=satırsayısı+1
        if line.startswith("T.C."):
            #bir satır T.C. ilebaşlıyorsa satırsayısını int cinsinden isim satırlistesine ekliyorum
            isimsatırlistesi.append(int(satırsayısı))
            print(satırsayısı)
Reply


Messages In This Thread
Finding line numbers starting with certain string - by Sutsro - Jun-27-2020, 12:11 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Pulling Specifics Words/Numbers from String bigpapa 2 769 May-01-2023, 07:22 PM
Last Post: bigpapa
  How do I check if the first X characters of a string are numbers? FirstBornAlbratross 6 1,551 Apr-12-2023, 10:39 AM
Last Post: jefsummers
  File "<string>", line 19, in <module> error is related to what? Frankduc 9 12,585 Mar-09-2023, 07:22 AM
Last Post: LocklearSusan
  Writing string to file results in one character per line RB76SFJPsJJDu3bMnwYM 4 1,386 Sep-27-2022, 01:38 PM
Last Post: buran
  Finding First Digits in String giddyhead 4 1,379 Aug-17-2022, 08:12 PM
Last Post: giddyhead
  Inserting line feeds and comments into a beautifulsoup string arbiel 1 1,191 Jul-20-2022, 09:05 AM
Last Post: arbiel
  Find and Replace numbers in String giddyhead 2 1,244 Jul-17-2022, 06:22 PM
Last Post: giddyhead
Question Finding string in list item jesse68 8 1,887 Jun-30-2022, 08:27 AM
Last Post: Gribouillis
  append a string to a modified line Mr_Blue 10 3,873 Sep-16-2021, 07:24 PM
Last Post: Mr_Blue
  How to capture string from a line to certain line jerald 1 1,918 Jun-30-2021, 05:13 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

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