Help with the file’s project | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Help with the file’s project

file = open("/usercode/files/books.txt", "r") #tu código va aquí txt=" " for line in file: s=line.split(" ") for j in range(len(s)): k=s[j] l=k[0] txt= txt + str(l) print(txt) txt+="\n" file.close() What is wrong? I’m stuck, please help

11th Jun 2022, 3:45 AM
Mabel Zavala Moreira
5 Answers
+ 1
Mabel Zavala Moreira Copy whole code and replace your code with this code and see
12th Jun 2022, 7:15 AM
A͢J
A͢J - avatar
+ 3
Mabel Zavala Moreira , here is a version that differs a bit from yours, with an improved readability: file = open("/usercode/files/books.txt", "r") for line in file: line = line.split() res = "" # create an empty string for temporarly holding the first letters from each word for word in line: # iterate through the lines res += word[0] # take the first letter from each word in a specific line and adx it to the output string print(res) # print the composed output string file.close()
11th Jun 2022, 5:43 PM
Lothar
Lothar - avatar
+ 2
Mabel Zavala Moreira you have to reinitialise txt with empty character before the 2nd loop And also no need to do txt += "\n" file = open("/usercode/files/books.txt", "r") #tu código va aquí txt = " " for line in file: s = line.split(" ") txt = "" for j in range(len(s)): k = s[j] l = k[0] txt= txt + str(l) print(txt) # txt+="\n" file.close()
11th Jun 2022, 4:00 AM
A͢J
A͢J - avatar
+ 1
True, thank you AJ
13th Jun 2022, 4:20 PM
Mabel Zavala Moreira
0
I applied the recommended changes but its not working :(
12th Jun 2022, 4:14 AM
Mabel Zavala Moreira