Welcome to Westonci.ca, where finding answers to your questions is made simple by our community of experts. Experience the convenience of finding accurate answers to your questions from knowledgeable professionals on our platform. Get detailed and accurate answers to your questions from a dedicated community of experts on our Q&A platform.

user_word = input()
user_number = int(input())
print(user_word,user_number)
... in python how do i get the coma between user_word and user_number to display in the output? so Amy, 5 instead of Amy 5


Sagot :

Using the knowledge in computational language in python it is possible to write a code that will calculate total between user_word and user_number

Writting the code:

user_word = str(input())

user_number = int(input())

print(user_word+","+str(user_number))

See more about python at brainly.com/question/18502436

#SPJ1

View image lhmarianateixeira

Answer:

print(user_word+","+str(user_number))

Explanation:

With these problems don't try to figure out EVERYTHING. sometimes all they want is the print statement.