Help with time

Report a typo

Use Python's built-in help system to display brief information about the asctime() function from the time module.

Your output should be like this:

Help on built-in function asctime in time:

time.asctime = asctime(...) # or just asctime(...)
    asctime([tuple]) -> string
...
...

Do not use print().

Write a program in Python 3
# use built-in help system here
___

Create a free account to access the full topic