+ 1
How to solve this code
Contact management system making https://code.sololearn.com/cVAklRhtVn0E/?ref=app
3 Answers
+ 1
For the concatenation in print statement has to be a string:
str(age)
+ 1
#1
print(name ,"is",age ,"years old")
#2
print(f'{name} is {age} years old')
+ 1
Tnx