Answer the question
In order to leave comments, you need to log in
How to work with Russian letters in python?
The notepad contains the text: "Glock-18 | Night (Well-Worn):". If you read it in python
inputfile = 'PATH'
info = open(inputfile, mode = 'r')
for line in buyordersfile:
linetemp = ''
temp = 0
for i in range (0, len(line)):
if line[i] == ':':
temp = i + 1
break
else:
linetemp += line[i]
print(linetemp)
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question