+ 1

Libraries

I finished the python intermediate course, but I don't know anything about libraries and the import things. Is there another python course or where can I learn this?

25th Aug 2025, 12:45 PM
Jakob
Jakob - avatar
4 ответов
+ 3
Jakob , there is only very little information in the solo learn tutorials about the topics you have requested. so we have to use other sources like *geeksforgeeks* (or other places): https://www.geeksforgeeks.org/JUMP_LINK__&&__python__&&__JUMP_LINK/how-to-import-local-modules-with-python/ you can also have a look to youtube videos.
25th Aug 2025, 1:14 PM
Lothar
Lothar - avatar
+ 2
You can learn about the variety and use of Python libraries in Google. Absolutely all Python libraries are imported using "import <library name>". You can also grab additional library parts using "from <library name> import <module name>". Libraries are imported if you have previously installed them on your device. Windows has a command "pip install <library name>" After entering this command in PowerShell, the library itself is installed. You need to wait, and then the library will be completely installed on the PC.
25th Aug 2025, 1:03 PM
Mila
Mila - avatar
+ 2
Thank Mila!
25th Aug 2025, 6:09 PM
Jakob
Jakob - avatar
0
Ok, thank you very much Lothar!
25th Aug 2025, 5:58 PM
Jakob
Jakob - avatar