What is the result of the following operation? ‘#’ * 5

Questions & AnswersCategory: PythonWhat is the result of the following operation? ‘#’ * 5
Lokesh Kumar Staff asked 2 years ago

What is the result of the following operation?

'#' * 5

 

a. The operation cannot be performed. You cannot multiply an object of type str by an object of type int.

b. ‘#’

c. ‘55555’

d. ‘#####’

e. ‘#5’