Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Number of characters
#9
import os
import sys

cesta_vstup = 'text.txt'
cesta_vystup = 'text_out.txt'

if not os.path.exists(text_out.txt):
    print 'vstupni soubor nebyl nalezen!'
    sys.exit()

cti = open(cesta_vstup, 'r')
radky = cti.readlines()
cti.close()

for i in range(0,len(radky)):
    if radky[i][0].isdigit() == False: 
        index_konec_hlavicky = i 
        break

hlavicka = radky[0:index_konec_hlavicky]
telo = radky[index_konec_hlavicky:]

zapis = open(cesta_vystup, 'w')
zapis.writelines(hlavicka)

for radek in radky:
    if 'black' in radek:
        black = radek.split()[1]
print black

for radek in radky:
    if 'white' in radek:
        white = radek.split()[1]
print white

a = black
b = white
c = black + white
print c
= 1122 :-D, i need convert it like int

YES!!!! i have it!!!!!!!!!! int(black)!! :-)))) i am happy :-D
Reply


Messages In This Thread
Number of characters - by ejstik - Jan-10-2018, 03:51 AM
RE: Number of characters - by Larz60+ - Jan-10-2018, 04:50 AM
RE: Number of characters - by ejstik - Jan-10-2018, 10:40 AM
RE: Number of characters - by Larz60+ - Jan-10-2018, 11:45 AM
RE: Number of characters - by ejstik - Jan-11-2018, 02:25 AM
RE: Number of characters - by Larz60+ - Jan-11-2018, 02:28 AM
RE: Number of characters - by ejstik - Jan-11-2018, 02:58 AM
RE: Number of characters - by Larz60+ - Jan-11-2018, 04:30 AM
RE: Number of characters - by ejstik - Jan-11-2018, 07:57 AM
RE: Number of characters - by Larz60+ - Jan-11-2018, 12:20 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Find if chain of characters or number Frankduc 4 1,806 Feb-11-2022, 01:55 PM
Last Post: Frankduc
  Remove escape characters / Unicode characters from string DreamingInsanity 5 13,788 May-15-2020, 01:37 PM
Last Post: snippsat
  Split Column Text by Number of Characters cgoldstein 3 3,013 Mar-11-2019, 01:45 PM
Last Post: perfringo
  Counting number of characters in a string Drone4four 1 3,461 Aug-16-2018, 02:33 PM
Last Post: ichabod801
  How can i restrict the number of characters in an input? kevencript 1 4,079 May-23-2018, 05:14 AM
Last Post: micseydel
  Regex: How to say 'any number of characters of any type until x'? JoeB 2 2,380 Jan-24-2018, 03:30 PM
Last Post: Mekire
  The number of occurrences of statistical characters RobertW 3 5,266 Jan-18-2018, 10:10 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

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