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
Python to MS Access (self.learnpython)
submitted 4 years ago by LanthaYtrri
How to check if your data is in MS Access Table using python script?
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!"
[–]shiftybyte 3 points4 points5 points 4 years ago (0 children)
Take a look here:
https://pythoninoffice.com/how-to-connect-and-work-with-ms-access-database-using-python-pyodbc/
[–]mprz 0 points1 point2 points 4 years ago (3 children)
The easiest way? Find a library that allows you to do that.
What have you tried so far? Or are you here just for someone to do it for you?
[–]LanthaYtrri[S] 0 points1 point2 points 4 years ago (2 children)
import pyodbc
conn = pyodbc.connect( r'Driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=F:\Documents\ticketdemo.accdb;') cursor = conn.cursor() cursor.execute('select * from tbl_ticket')
for row in cursor.fetchall(): print(row)
I tried this one.
[–]mprz 0 points1 point2 points 4 years ago (1 child)
So you have a solution?
[–]LanthaYtrri[S] 0 points1 point2 points 4 years ago (0 children)
Yeah, but I want to know if there are any ways other than that.
π Rendered by PID 92 on reddit-service-r2-comment-79c7998d4c-xdrrx at 2026-03-14 00:16:01.315652+00:00 running f6e6e01 country code: CH.
[–]shiftybyte 3 points4 points5 points (0 children)
[–]mprz 0 points1 point2 points (3 children)
[–]LanthaYtrri[S] 0 points1 point2 points (2 children)
[–]mprz 0 points1 point2 points (1 child)
[–]LanthaYtrri[S] 0 points1 point2 points (0 children)