Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

how to import module in python

+3 votes
asked Sep 27, 2019 by smit (150 points)

3 Answers

+1 vote
answered Sep 28, 2019 by Maxie (170 points)

Hello there, I found this article.  Hopefully, it helps.  smiley

0 votes
answered Sep 28, 2019 by KoushikKaleru (220 points)

first you need to install the module:

open cmd and type : pip install <module_name>

After downloading, open IDLE and type 

import <module_name>

to import 

commented Oct 5, 2021 by Sakshit Aryan (100 points)
But how can I import the file into your IDE?
0 votes
answered Nov 7, 2019 by dheeraj (1,090 points)
import module name
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...