Computer Science, asked by aishwary31, 5 months ago


3. a='hello';
print(a*4)

Answers

Answered by heyParam
3

Answer:

hellohellohellohello

Explanation:

In this python expression a contains 'hello' and it is multiply by 4. So 'hello' will be printed 4 times.

Similar questions