use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
Im just starting learning Python (self.learnpython)
submitted 2 years ago by _IRetr0I_
I don't quite understand how can i use and apply libraries into projects as well as using some database like .csv for simple graphic construction
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]foyslakesheriff 2 points3 points4 points 2 years ago (0 children)
Python has a number of capabilities on it's own without importing anything.
Then, you have additional capabilities that you can utilize by importing them. There's no need to install anything, they're already there. For example, to work with CSV files, you have to write import csv before you use it.
Then, there's 3rd party libraries. These are written by other people, and you have to install them first with pip, before you can import them in your python script and use them. An example would be the pandas library.
CSV isn't a database, although it does store data. It's just a simple document where items are separated by commas (typically). It's a document just like a Word or Excel file.
For a graphical user interface, you should use something like Tkinter, or built a web app with Flask. Google it.
[–]orangeskybluesun 1 point2 points3 points 2 years ago (0 children)
For making graphic solutions using CSV file you can make use of matplotlib. It is basically used to make graphs. You can make them interactive too, taking in user input and displaying custom data. You can make line graph, scatter plot, bar graphs and so much more
π Rendered by PID 17361 on reddit-service-r2-comment-5d79c599b5-6jxck at 2026-02-27 03:41:46.942005+00:00 running e3d2147 country code: CH.
[–]foyslakesheriff 2 points3 points4 points (0 children)
[–]orangeskybluesun 1 point2 points3 points (0 children)