+ 1
Help
Вам дан файл "books.txt" с названиями книг, каждое на новой строке. Чтобы зашифровать названия книг, вам нужно взять первые буквы каждого слова в названии и объединить их. Например, для названия книги "Game of Thrones" зашифрованная версия будет "GoT". Завершите программу, чтобы прочитать названия книг из файла и вывести зашифрованные версии, каждую на новой строке.
11 Answers
+ 1
YourAnonOne
books = open("books.txt").readlines()
for i in books:
x = i.split()
Res = ''
for j in x:
Res = Res + j[0]
print(Res)
+ 2
Help
You are given a file "books.txt" with the titles of the books, each on a new line.
To encrypt book titles, you need to take the first letters of each word in the title and concatenate them.
For example, for the name
+ 1
English pls?
0
Great thanks
0
YourAnonOne this question seems a little bit to hard to understand. Try Translating or Clue for your Quest, Thanks
- 1
How are you
- 1
and you
- 1
Well
- 1
thalnsk
- 2
Hi
- 2
hi