What will the output of following expression considering Python 3.x
>>>print('test' *3)
>>>print('7'+'8')
Answers
Answered by
0
Answer:
print ('test'*3)
Explanation:
is the answer
Similar questions