Challenge 211 Generate output for given prompt Activity Rese
Challenge 2.1.1: Generate output for given prompt. Activity Reset Type a single statement that produces the following output. Howdy, Grace print Check Next Feedback?
Solution
According to given picture, it should be -> print(str(user_word)+\",\ \"+str(user_number)+\".\")
According to your statement, it should be -> print(str(user_word)+\",\"+str(user_number))
Here, str(object) function returns equivalent string value of the object and operator \'+\' (plus)
is used as string concatenation operator.
