Напишите программу, которая считывает целое число и выводит текст, аналогичный в примере. (на 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,'.') вопрос: как сделать так, чтобы точка выводилась без отступления
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)+'.')
Программа
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 = '')