- 2
Помогите решить
Немогу решить задание 51
3 Answers
0
celsius = int(input())
def conv(c):
return (
9/5*celsius + 32)
fahrenheit = conv(celsius)
print(fahrenheit)
0
Ой нет 51
0
file = open("/usercode/files/books.txt", "r")
#your code goes here
for line in file.readlines():
l=line.replace('\n','')
print(l[0]+str(len(l)))
file.close()