Sarika Singh has Published 192 Articles

How can I list the contents of a directory in Python?

Sarika Singh

Sarika Singh

Updated on 17-Aug-2022 13:20:42

6K+ Views

A computer's file system's directory is an organisational feature used to store and locate files. A tree of directories is created by organising directories hierarchically. There are parent-child relationships in directories. A folder can also be used to refer to a directory. Python has accumulated a number of APIs that ... Read More

Can we explicitly define datatype in a Python Function?

Sarika Singh

Sarika Singh

Updated on 13-Feb-2020 06:27:43

779 Views

Yes, in Python, you can explicitly define the datatype of function parameters and return values using type hints or type annotations. Even if you specify the data types using type hints, Python will still run the code even when the wrong types are passed. The execution of the program will ... Read More

Advertisements