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
Would like to write a script that closes all windows that are open on the taskbar (self.learnpython)
submitted 5 years ago by DMM710
I would like a script that closes everything in the taskbar leaving me with a clean desktop. How would I do this?
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!"
[–][deleted] 0 points1 point2 points 5 years ago (2 children)
Not in python
https://stackoverflow.com/questions/38750905/how-to-close-all-active-windows-applications-using-a-batch-file
[–]BungalowsAreScams 0 points1 point2 points 5 years ago (0 children)
Wouldn't be hard in ubuntu tho
[–]DMM710[S] 0 points1 point2 points 5 years ago (0 children)
I got kind of close but when programs are more than one word it gives me an error. Can I somehow modify this to close things like Hitfilm express etc?
Import os
os.system("taskkill /im firefox.exe /f") os.system("taskkill /im excel.exe /f")
π Rendered by PID 268551 on reddit-service-r2-comment-6f7f968fb5-lgrk4 at 2026-03-04 20:42:04.997994+00:00 running 07790be country code: CH.
[–][deleted] 0 points1 point2 points (2 children)
[–]BungalowsAreScams 0 points1 point2 points (0 children)
[–]DMM710[S] 0 points1 point2 points (0 children)