+ 2
Вывод построчно Walrus
Не могу понять как сделать построчно вывод
5 Respuestas
+ 4
😎 Which option would you choose and why?
print(x:=int(input()), '+', y:=int(input()), '=', x+y)
#1:
print(f"{(x:=int(input()))}\n{(y:=int(input()))}\n{x+y}")
#2:
print(f"""{(x:=int(input()))}
{(y:=int(input()))}
{x+y}""")
#3:
print(str(x:=int(input()))+'\n'+str(y:=int(input()))+'\n'+str(x+y))
#4:
print("{0}\n{1}\n{2}".format(x:=int(input()),y:=int(input()),x+y))
https://code.sololearn.com/cY1QpcYktJ2Y/?ref=app
+ 3
Big thx I chose 3) because I understand now only what option)
+ 2
# try this
x= int(input())
y= int(input())
print(x+y)
+ 2
Thx but I need understand how it doo with walrus.
+ 1
Строка вот такая
print = (x:= int (input(' ')), y:= int (input(' ')), (x+y))
Нужно чтобы он выводил результат
5
6
11
Как это сделать?