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
[–]twigboy 0 points1 point2 points (1 child)
[–]TMiguelT[S] 0 points1 point2 points (0 children)
[–]kankyo -2 points-1 points0 points (1 child)
[–]TMiguelT[S] 1 point2 points3 points (0 children)