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
0
Answer:
print(help(input))
Another method:
print(input.__doc__)
Similar questions
Social Sciences,
4 months ago
English,
4 months ago
Physics,
4 months ago
English,
9 months ago
Economy,
9 months ago
Social Sciences,
1 year ago
Social Sciences,
1 year ago