Computer Science, asked by shivani5845, 1 year ago

How can we import a module in Python?

Answers

Answered by sanjeetkumar40
1

Importing Modules. To make use of the functions in a module, you'll need to import the module with an importstatement. An import statement is made up of the import keyword along with the name of the module. In aPython file, this will be declared at the top of the code, under any shebang lines or general comments.

Similar questions