Computer Science, asked by ayushi8585, 9 months ago

Write a python script to print the docstring(documentation string) of the input function.

Hint:

use help() function to get the docstring

Answers

Answered by ss141309
0

Answer:

print(help(input))

Another method:

print(input.__doc__)

Similar questions