+ 1
How to use modules properly in any programming language
Please help!
5 odpowiedzi
+ 1
Javascript
const path = require("path");
Python3
import * from Tkinter
+ 8
Modules are for code separation and reusability.
If you have some code (multiple) that you are gonna use hundred of times then you define it in separate file and import it whenever you need.
0
Thank you all
0
For your help!!
- 2
Can you explain more