👤

Write a function definition for a function which takes one parameter and returns twice that parameter

Answer :

Answer:

The function in python is as follows:

def twice(num):

   return 2 * num

Explanation:

This defines the function; The function receives num as its parameter

def twice(num):

This returns twice of num

   return 2 * num

In Trainings: Other Questions