Find detailed and accurate answers to your questions on IDNLearn.com. Ask any question and get a detailed, reliable answer from our community of experts.
Answer:
Change:
print("Season is",season)
To:
print("Season is " + season)
Explanation:
String Concatenation can be done using many ways but not by comma. You can use the + operator like i just did or % operator, join method or format function.
But for now, try using the + operator.