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 do I import a certain function from another file (python)?

+10 votes
asked Jan 10, 2022 by Sam (1,310 points)
I need to import one single function from this other file please help me do so.

2 Answers

0 votes
answered Jan 11, 2022 by xDELLx (10,500 points)
https://www.geeksforgeeks.org/python-call-function-from-another-file/

You can try steps from above link & post the exact error you get.

Asking  generic/vague questions will only get vague replies
0 votes
answered Jan 19, 2022 by Arkiralor (140 points)
from <filename> import <function name>

if the file is in a package (folder that has an __init__.py file):

from <package name>.<filename> import <function 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.
...