0
Whats wrong with that...plz help
print(name:=input ()+" is "+age:=input())
2 Answers
+ 2
The issue is that you are try to assign 2 variables in a + expression.
Whats wrong with that...plz help
Either remove the variables (you don't need them)
print(input ()+" is "+input())
Or separate the assignments:
print(name:=input (), "is", age:=input())