user_word and user_number are read from input. Output user_word, followed by ',' (a comma) and user_number using a single statement. Ex: If the input is: Amy 5 then the output is: Amy,5
user_word = input()
user_number = int(input())
print(user_word +",",user_number)
error is Output is nearly correct, but whitespace differs. See highlights below. Special character legend Your output Amy, 5 Expected output Amy,5
Output is nearly correct, but whitespace differs. See highlights below. Special character legend Your output Amy, 5 Expected output Amy,5
im getting a space between and when i try to concatenate is says i get another error
1st week 0 experience please help