Как сделать так, чтобы функция принт выводилась на разных строках в этом коде:
Лео Морозов
Ученик
(97),
на голосовании
8 месяцев назад
Как сделать так, чтобы функция принт выводилась на разных строках в этом коде: N = int(input()) a = N + 1 b = N - 1 print('The next number for the number',N,'is',a,end = '.') print('The previovus number for the number',N,'is',b, end = '.')
N = int(input()) a = N + 1 b = N - 1 print('The next number for the number', N, 'is', a, end='.\n') print('The previovus number for the number', N, 'is', b, end='.')
N = int(input())
a = N + 1
b = N - 1
print('The next number for the number',N,'is',a,end = '.')
print('The previovus number for the number',N,'is',b, end = '.')