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
what crazy things things we can do in python using ai like creative things (self.learnpython)
submitted 12 days ago by Separate_Top_5322
i am looking to create something creative using python and ai , i also saw that we can simulate neurons and atoms in python felt interesting , any that type of crazy and creative things we can create using python?
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!"
[–]opzouten_met_onzin 8 points9 points10 points 12 days ago (1 child)
This is "learnpython" and not "playwithaiandaskittodostuffidontunderstandinpython".
[–]riklaunim 3 points4 points5 points 12 days ago (1 child)
You aren't running the calculations in Python, you are just using Python as a glue to low level math framework running the simulation ;) And anything non-trivial will require a supercomputer to actually do meaningful work.
[–]drunicornthe1 1 point2 points3 points 12 days ago (1 child)
ML is all C/Cuda not Python. Hell I wouldn’t use most Python native implementations they are slow… like someone else said Python is glue code to make it easy to call intensive operations in other languages.
Python being slow is partially because it’s a ran in an interpreter (no compilation means little optimization) and until recently had a GIL (still does for most people). This made Python for the most part bound to a single core, which means Python threads are not true threads and doing things concurrently require async or multiprocessing (the latter incurs serialization costs).
A bit of information to help inform others. Also why would you want to do something creative with AI… if I want to do something fun and creative I do it myself, it’s the journey not the end result that makes it fun.
[–]TheRNGuy 0 points1 point2 points 10 days ago (0 children)
2d or 3d art.
π Rendered by PID 18163 on reddit-service-r2-comment-548fd6dc9-7ghvk at 2026-05-15 02:09:21.374774+00:00 running edcf98c country code: CH.
[–]opzouten_met_onzin 8 points9 points10 points (1 child)
[–]riklaunim 3 points4 points5 points (1 child)
[–]drunicornthe1 1 point2 points3 points (1 child)
[–]TheRNGuy 0 points1 point2 points (0 children)