news about the dynamic, interpreted, interactive, object-oriented, extensible programming language Python
If you are about to ask a question, please consider r/learnpython. Homework-style questions will be removed, and you'll be encouraged to post there instead.
Please don't use URL shorteners
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 Books and Resources
Online exercices
programming challenges
Asking Questions
Try Python in your browser
Docs
Libraries
Related subreddits
Python jobs
Newsletters
Screencasts
[–]nemesit 4 points5 points6 points (0 children)
[–]kvdveer 0 points1 point2 points (1 child)
[–]tynorf 0 points1 point2 points (0 children)