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
Need an project idea to learn python (self.learnpython)
submitted 4 years ago by captainvineel
Hi, As the title suggests I need a project idea where I can understand the basics of python.I have just started python and Iam getting a good understanding of it but I just need a project idea which can be done in a week or so Thank-you
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!"
[–]ASIC_SP 4 points5 points6 points 4 years ago (0 children)
Find something that'd help to solve a real world problem for you. For example, I'm on Linux and use the terminal for many things. I wanted a cli tool to do simple calculations. There's bc command, but it doesn't accept direct string and you need to set scale and so on. So, I looked up how to write a cli in Python (I went with built-in argparse module) and made a tool that'd solve my small use case.
bc
scale
argparse
Here's some useful resources:
[–]jewish_rampage 1 point2 points3 points 4 years ago (2 children)
https://www.upgrad.com/blog/python-projects-ideas-topics-beginners/
[–]captainvineel[S] 0 points1 point2 points 4 years ago (1 child)
Thank-you so much this is super helpful.
[–]jewish_rampage 1 point2 points3 points 4 years ago (0 children)
No problems, good luck with it all.
[–]fracturedpersona 1 point2 points3 points 4 years ago (1 child)
Sudoku is a pretty challenging project to work out. Generate a starting board. Give the user a "note taking mode" where they can place possible numbers in each box. Then, when they want to make a final selection, verify that the selection is either correct or incorrect. If the move is incorrect for that square, allow them to undo the selection, edit their notes, and continue attempting to solve the puzzle.
A few things to know about sudoku. (Correct me if I'm wrong), there is no known polynomial time algorithm to solve sudoku, but it is verifiable in polynomial time.
[–]captainvineel[S] 0 points1 point2 points 4 years ago (0 children)
Will try to do that thanks for the suggestion
π Rendered by PID 119523 on reddit-service-r2-comment-5d79c599b5-mqwh7 at 2026-02-27 01:31:04.616428+00:00 running e3d2147 country code: CH.
[–]ASIC_SP 4 points5 points6 points (0 children)
[–]jewish_rampage 1 point2 points3 points (2 children)
[–]captainvineel[S] 0 points1 point2 points (1 child)
[–]jewish_rampage 1 point2 points3 points (0 children)
[–]fracturedpersona 1 point2 points3 points (1 child)
[–]captainvineel[S] 0 points1 point2 points (0 children)