Pls help me i will mark as brainliest
Attachments:
Answers
Answered by
0
Answer:
1) num = int (input("Show the Multiplication table of ?"))
# Using for loop to iterate multiplication 10 times
for i in range(1,11):
print (num, 'x' , i, '=', num*i)
2) s1 = int (input ('Please enter the first String : '))
s2 = int (input ('Please enter the second String : '))
print('Concatenated String = ', s1+s2)
Similar questions