0
How do I remove that line that appears at the end
name ="James" age ="42"; print(name+"\tis\t"+age+"\tyears\t"+"old")
4 Antworten
+ 2
hello Chinedu Victor Nwabueze
first thing I not some point with your questions before answer your question
1-make sure 99% someone asked whatever the question before you and get the answer ,so at first google you question or search in discuss here
2-for python there is pythonic way to discover any pure python module or built in function you what check this link would be useful for you https://www.sololearn.com/post/1296748/?ref=app
Another way to go to documentation
Finally the answer
print("what ever you want",end="")
#happy_coding
0
Please, explaine better your problem
0
You’re making a contact management system.
The given program declares two variables, name and age.
Complete the code to output "name is age years old", where name and age are the declared variable values.
0
name ="James"
age ="42"