Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
22 views

Python

Uploaded by

srikanthseekar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views

Python

Uploaded by

srikanthseekar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

>_ 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

Python is a programming language that lets you work quickly and integrate systems more effectively. >>> Learn More

 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 (/about/gettingstarted/)

 Download
Python source code and installers are available for download for all versions!

Latest: Python 3.12.3 (/downloads/release/python-3123/)

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

docs.python.org (https://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 (//jobs.python.org)

 Latest News
2024-05-03 The PSF's 2023 Annual Impact Report is here! (https://pyfound.blogspot.com/2024/05/the-psfs-2023-annual-impact-report-is.html)

2024-04-09 Announcing Python Software Foundation Fellow Members for Q4 2023! 🎉 (https://pyfound.blogspot.com/2024/04/announcing-python-software-foundation.html)

2024-04-09 Python 3.12.3 and 3.13.0a6 released (https://pythoninsider.blogspot.com/2024/04/python-3123-and-3130a6-released.html)

2024-04-08 Python 3.11.9 is now available (https://pythoninsider.blogspot.com/2024/04/python-3119-is-now-available.html)

2024-04-04 Python Software Foundation - April 2024 Newsletter (https://mailchi.mp/python/python-software-foundation-december-2023-newsletter-15957293)

 Upcoming Events
2024-05-07 May Helsinki Python meetup (/events/python-user-group/1762/)
2024-05-15 PyCon US 2024 (/events/python-events/1508/)

2024-05-17 Flask Con 2024 (/events/python-events/1727/)

2024-05-17 PyGrunn 2024 (/events/python-events/1741/)

2024-05-17 Django Girls Ecuador 2024 (/events/python-user-group/1723/)

 Success Stories

Since its founding in 2007, Lincoln Loop has been building sites for their clients with Python and Django. They credit Python's philosophy of
practicality and explicitness, along with the rich ecosystem of open-source libraries available on PyPI, as keys to their success. Additionally, the
inclusivity, openness, and strong culture of collaboration in the Python community have enabled the agency to find and hire great people who are
lifelong learners. (/success-stories/lincoln-loop-building-a-sustainable-business-inspired-by-pythons-ethos/)

Lincoln Loop: Building a sustainable business inspired by Python’s ethos (/success-stories/lincoln-loop-building-a-sustainable-business-inspired-by-pythons-ethos/) by Peter Baumgartner

 Use Python for…


Web Development:
Django (http://www.djangoproject.com/) , Pyramid (http://www.pylonsproject.org/) , Bottle (http://bottlepy.org) , Tornado (http://tornadoweb.org) , Flask (http://flask.pocoo.org/) , web2py (http://www.web2py.com/)

GUI Development:
tkInter (http://wiki.python.org/moin/TkInter) , PyGObject (https://wiki.gnome.org/Projects/PyGObject) , PyQt (http://www.riverbankcomputing.co.uk/software/pyqt/intro) , PySide (https://wiki.qt.io/PySide) ,
Kivy (https://kivy.org/) , wxPython (http://www.wxpython.org/) , DearPyGui (https://dearpygui.readthedocs.io/en/latest/)

Scientific and Numeric:


SciPy (http://www.scipy.org) , Pandas (http://pandas.pydata.org/) , IPython (http://ipython.org)

Software Development:
Buildbot (http://buildbot.net/) , Trac (http://trac.edgewall.org/) , Roundup (http://roundup.sourceforge.net/)

System Administration:
Ansible (http://www.ansible.com) , Salt (https://saltproject.io) , OpenStack (https://www.openstack.org) , xonsh (https://xon.sh)

Python Enhancement Proposals (PEPs) (/dev/peps/): The future of Python is discussed here.  RSS (/dev/peps/peps.rss)

Python Software Foundation (/psf/)


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 (/psf/)

Become a Member (/users/membership/)

Donate to the PSF (/psf/donations/)

 ▲ Back to Top

 ▲ Back to Top

Copyright ©2001-2024. Python Software Foundation Legal Statements Privacy Policy

You might also like