- 1
Help
https://sololearn.com/coach/1032/?ref=app I didn’t get how am I suppose to solve this one.
10 odpowiedzi
+ 3
name = "James"
age = "42"
name = input()
age = input()
print(name + " is "+age+" years old")
+ 1
Post your question as well as your attempt
0
Atul
I didn’t get the question in order to solve it so i post the link apove you’ll find the question.
0
If u will share code coach links here it will not be visible to others .So post your code in codebit and then share .
0
Now that we know how to take user input, let's improve our contact card program that we previously made using variables.
Change the given code to take the name and age from user input and use them in the output.
0
name = int(input())
age = int(input())
print(name + age)
0
I don't know your question what u want but in name u written int remove int otherwise its fine
name = input()
age = int(input())
print(name , age)
0
name = input()
age = input()
print(name + " " + age)
0
this code works so try it yourselves to see:
name = input()
age = input()
print(name + " is "+age+" years old")
0
# copy this
name = input()
age = input()
print(name + " is "+age+" years old")