Python: Написать программу ввода и вывода значений следующих переменных:
a, b, N, S, d, st, rm
Ответы на вопрос
Ответил FroDK
1
Ответ:
a = input('>> ')
print(a)
b = input('>> ')
print(b)
N = input('>> ')
print(N)
S = input('>> ')
print(S)
d = input('>> ')
print(d)
st = input('>> ')
print(st)
rm = input('>> ')
print(rm)
Объяснение:
Python 3.7
Новые вопросы