Python noob question
Just practicing I'm new to this. Everything runs fine i was wondering
if there is a way to combine adjjective1/2 together without breaking it?
I appreciate any info.
if there is a way to combine adjjective1/2 together without breaking it?
I appreciate any info.
Code:
adjective = input("enter adjective here")
adjective2 = input("enter adjective here")
type_of_bird = input("what kind of bird")
room_in_a_house = input("room in a house")
verb1 = input("verb(past tense)")
verb2 = input("verb")
print("It was a " + adjective + ", cold November day. "
"I woke up to the " + adjective2 + " smell of " + type_of_bird +
" roasting in the " + room_in_a_house + " downstairs. I " + verb1 +
" down the stairs to see if I could help " + verb2 + " the dinner.")