Design a module named timesten. The module should accept an integer argument. When the module is called, it should display the product of its argument multiplied times 10.
a) def timesten(num) : print(num 10)
b) module timesten(num) : print(num 10)
c) def timesten() : print(num 10)
d) def module_timesten(num) : print(num 10)

Q&A Education