+ 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?
4 Risposte
+ 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.
+ 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.
+ 2
Thank Mila!
0
Ok, thank you very much Lothar!