Напишите программу, которая считывает целое число и выводит текст, аналогичный в примере. (на python) входные данные 179 выходные данные the next number for the number 179 is 180. the previous number for the number 179 is 178. программа n= int( print ('the next number for the number', n,'is',n+1,'.') print ('the previous number for the number',n,'is',n-1,'.') вопрос: как сделать так, чтобы точка выводилась без отступления

настёна55556566666 настёна55556566666    1   23.07.2019 02:50    1

Ответы
elenalenam elenalenam  23.09.2020 20:55
Самый простой вариант такой:
n= int(input())
print ('The next number for the number', n,'is',str(n+1)+'.')
print ('The previous number for the number',n,'is',str(n-1)+'.')
ПОКАЗАТЬ ОТВЕТЫ
Duma10 Duma10  23.09.2020 20:55
Требуется передать в print последним параметром sep = ''.
Программа 
n= int(input())

print ('The next number for the number ', n,' is ',n+1,'.', sep = '')

print ('The previous number for the number ',n,' is ',n-1,'.', sep = '')
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика