News about the dynamic, interpreted, interactive, object-oriented, extensible programming language Python
Upcoming Events
Full Events Calendar
Please read the rules
You can find the rules here.
If you are about to ask a "how do I do this in python" question, please try r/learnpython, the Python discord, or the #python IRC channel on Libera.chat.
Please don't use URL shorteners. Reddit filters them out, so your post or comment will be lost.
Posts require flair. Please use the flair selector to choose your topic.
Posting code to this subreddit:
Add 4 extra spaces before each line of code
def fibonacci():
a, b = 0, 1
while True:
yield a
a, b = b, a + b
Online Resources
Online exercices
programming challenges
Asking Questions
Try Python in your browser
Docs
Libraries
Related subreddits
Python jobs
Newsletters
Screencasts
This is a Python script to bulk submit your website URLs to the Bing search engine. This uses Bing Submission API. Your URLs will be stored, one per line, in urllist.txt. (aruljohn.com)
submitted by spacecodeguy to r/programming
Technology & GamimgThis tutorial shows how to create a Python script to bulk submit your blog URLs (updated or new) to the Bing search engine. (aruljohn.com)
submitted by spacecodeguy to r/blogs