Identify the errors, if any stating the reasons.
S1 = 'must'
S2 = 'try
N1 = 10
N2 = 3
print(S1 + S2)
print(S2 * N2)
print(S1 + N1)
print(S2*S1)
Answers
Answered by
5
Answer:
S2 = 'try'
print(S2*S1 ) is can not multiply string with string
print(S1 + N1 ) is can not add string with int
Similar questions