0% found this document useful (0 votes)
69 views

Python

Uploaded by

Trial
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
69 views

Python

Uploaded by

Trial
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

Skip to content

Python
PSF
Docs
PyPI
Jobs
Community
python™
Donate Search This Site
Search
GO
Socialize
About

Downloads

Documentation

Community

Success Stories

News

Events
>_Launch Interactive Shell
# Python 3: Fibonacci series up to n
>>> def fib(n):
>>> a, b = 0, 1
>>> while a < n:
>>> print(a, end=' ')
>>> a, b = b, a+b
>>> print()
>>> fib(1000)
0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
Functions Defined
The core of extensible programming is defining functions. Python allows mandatory
and optional arguments, keyword arguments, and even arbitrary argument lists. More
about defining functions in Python 3

1
2
3
4
5
Python is a programming language that lets you work quickly
and integrate systems more effectively. Learn More

Support Python in 2022! Check out the special deal open only till November 29th.
Join in today!
Get Started
Whether you're new to programming or an experienced developer, it's easy to learn
and use Python.

Start with our Beginner’s Guide

Download
Python source code and installers are available for download for all versions!
Latest: Python 3.11.0

Docs
Documentation for Python's standard library, along with tutorials and guides, are
available online.

docs.python.org

Jobs
Looking for work or have a Python related position that you're trying to hire for?
Our relaunched community-run job board is the place to go.

jobs.python.org

Latest News
More
2022-11-23Where is the PSF?
2022-11-15Python 3.12.0 alpha 2 released
2022-11-07It's time for our annual year-end PSF fundraiser and membership drive 🎉
2022-11-01Thank You for Making PyCon US amazing, Jackie!
2022-10-26Announcing Python Software Foundation Fellow Members for Q3 2022! 🎉
Upcoming Events
More
2022-12-01PyData Global 2022
2022-12-07NZPUG-Auckland Coding Evening
2022-12-09PyCon Bolivia 2022
2022-12-17Python Pizza Holguín
2022-12-21An Introduction to Model Drift - PyLadies Amsterdam
Success Stories
More
"Some of the things [SonarCloud] spots are impressive (probably driven by some
introspection and/or type inference), not just the simple pattern matching that I
am used to in most of the flake8 ecosystem." - Peter J. A. Cock - maintainer of
BioPython
Deliver Clean and Safe Code for Your Python Applications by Kirti Joshi, Nicolas
Bontoux

Use Python for…


More
Web Development: Django, Pyramid, Bottle, Tornado, Flask, web2py
GUI Development: tkInter, PyGObject, PyQt, PySide, Kivy, wxPython
Scientific and Numeric: SciPy, Pandas, IPython
Software Development: Buildbot, Trac, Roundup
System Administration: Ansible, Salt, OpenStack, xonsh
>>> Python Enhancement Proposals: The future of Python RSS
>>> Python Software Foundation
The mission of the Python Software Foundation is to promote, protect, and advance
the Python programming language, and to support and facilitate the growth of a
diverse and international community of Python programmers. Learn more

Become a Member Donate to the PSF

About
Applications
Quotes
Getting Started
Help
Python Brochure
Downloads
All releases
Source code
Windows
macOS
Other Platforms
License
Alternative Implementations
Documentation
Docs
Audio/Visual Talks
Beginner's Guide
Developer's Guide
FAQ
Non-English Docs
PEP Index
Python Books
Python Essays
Community
Diversity
Mailing Lists
IRC
Forums
PSF Annual Impact Report
Python Conferences
Special Interest Groups
Python Logo
Python Wiki
Merchandise
Code of Conduct
Community Awards
Get Involved
Shared Stories
Success Stories
Arts
Business
Education
Engineering
Government
Scientific
Software Development
News
Python News
PSF Newsletter
Community News
PSF News
PyCon News
Events
Python Events
User Group Events
Python Events Archive
User Group Events Archive
Submit an Event
Contributing
Developer's Guide
Issue Tracker
python-dev list
Core Mentorship
Report a Security Issue
Help & General Contact
Diversity Initiatives

Submit Website Bug

Status
Copyright ©2001-2022. Python Software Foundation Legal Statements Privacy Policy
Powered by Heroku

You might also like