Ergebnis für URL: http://www.python.org/
    #[1]Python Enhancement Proposals [2]Python Job Opportunities [3]Python Software
   Foundation News [4]Python Insider

   Notice: While JavaScript is not essential for this website, your interaction with
   the content will be limited. Please turn JavaScript on for the full experience.

   [5]Skip to content
   [6]v Close
     * [7]Python
     * [8]PSF
     * [9]Docs
     * [10]PyPI
     * [11]Jobs
     * [12]Community

   [13]^ The Python Network

[14]python(TM)

   [15]Donate
   [16]=3 Menu

   Search This Site ____________________ (BUTTON) GO

     * [17]A A
          + [18]Smaller
          + [19]Larger
          + [20]Reset

     * [21]Socialize
          + [22]LinkedIn
          + [23]Mastodon
          + [24]Chat on IRC
          + [25]Twitter

     * [26]About
          + [27]Applications
          + [28]Quotes
          + [29]Getting Started
          + [30]Help
          + [31]Python Brochure
     * [32]Downloads
          + [33]All releases
          + [34]Source code
          + [35]Windows
          + [36]macOS
          + [37]Other Platforms
          + [38]License
          + [39]Alternative Implementations
     * [40]Documentation
          + [41]Docs
          + [42]Audio/Visual Talks
          + [43]Beginner's Guide
          + [44]Developer's Guide
          + [45]FAQ
          + [46]Non-English Docs
          + [47]PEP Index
          + [48]Python Books
          + [49]Python Essays
     * [50]Community
          + [51]Diversity
          + [52]Mailing Lists
          + [53]IRC
          + [54]Forums
          + [55]PSF Annual Impact Report
          + [56]Python Conferences
          + [57]Special Interest Groups
          + [58]Python Logo
          + [59]Python Wiki
          + [60]Code of Conduct
          + [61]Community Awards
          + [62]Get Involved
          + [63]Shared Stories
     * [64]Success Stories
          + [65]Arts
          + [66]Business
          + [67]Education
          + [68]Engineering
          + [69]Government
          + [70]Scientific
          + [71]Software Development
     * [72]News
          + [73]Python News
          + [74]PSF Newsletter
          + [75]PSF News
          + [76]PyCon US News
          + [77]News from the Community
     * [78]Events
          + [79]Python Events
          + [80]User Group Events
          + [81]Python Events Archive
          + [82]User Group Events Archive
          + [83]Submit an Event

     * [84]>_ 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. [85]More about defining functions in Python 3
     *
# Python 3: List comprehensions
>>> fruits = ['Banana', 'Apple', 'Lime']
>>> loud_fruits = [fruit.upper() for fruit in fruits]
>>> print(loud_fruits)
['BANANA', 'APPLE', 'LIME']

# List and the enumerate function
>>> list(enumerate(fruits))
[(0, 'Banana'), (1, 'Apple'), (2, 'Lime')]

Compound Data Types
       Lists (known as arrays in other languages) are one of the compound data types
       that Python understands. Lists can be indexed, sliced and manipulated with
       other built-in functions. [86]More about lists in Python 3
     *
# Python 3: Simple arithmetic
>>> 1 / 2
0.5
>>> 2 ** 3
8
>>> 17 / 3  # classic division returns a float
5.666666666666667
>>> 17 // 3  # floor division
5

Intuitive Interpretation
       Calculations are simple with Python, and expression syntax is
       straightforward: the operators +, -, * and / work as expected; parentheses ()
       can be used for grouping. [87]More about simple math functions in Python 3.
     *
# For loop on a list
>>> numbers = [2, 4, 6, 8]
>>> product = 1
>>> for number in numbers:
...    product = product * number
...
>>> print('The product is:', product)
The product is: 384

All the Flow You'd Expect
       Python knows the usual control flow statements that other languages speak --
       if, for, while and range -- with some of its own twists, of course. [88]More
       control flow tools in Python 3
     *
# Simple output (with Unicode)
>>> print("Hello, I'm Python!")
Hello, I'm Python!
# Input, assignment
>>> name = input('What is your name?\n')
What is your name?
Python
>>> print(f'Hi, {name}.')
Hi, Python.

Quick & Easy to Learn
       Experienced programmers in any other language can pick up Python very
       quickly, and beginners find the clean syntax and indentation structure easy
       to learn. [89]Whet your appetite with our Python 3 overview.

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

Get Started

   Whether you're new to programming or an experienced developer, it's easy to learn
   and use Python.

   [91]Start with our Beginner's Guide

Download

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

   Latest: [92]Python 3.12.4

Docs

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

   [93]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.

   [94]jobs.python.org

Latest News

   [95]More
     * 2024-06-14 [96]The Python Language Summit 2024: PyREPL -- New default REPL
       written in Python
     * 2024-06-14 [97]The Python Language Summit 2024
     * 2024-06-14 [98]The Python Language Summit 2024: Python on Mobile
     * 2024-06-14 [99]The Python Language Summit 2024: Lightning Talks
     * 2024-06-14 [100]The Python Language Summit 2024: Annotations as Transformers

Upcoming Events

   [101]More
     * 2024-06-19 [102]NZPUG-Auckland: Data Science: Pandas and PyArrow
     * 2024-06-20 [103]Wagtail Space US
     * 2024-06-22 [104]PyCamp Leipzig 2024
     * 2024-06-25 [105]PyLadies Amsterdam: Introduction to LLM Agents with LangChain
     * 2024-06-29 [106]North Bay Python 2024

Success Stories

   [107]More

     [108]When an Open Data standard is created and promoted, it's important to
     think why - what change is this trying to drive? What will people do with this
     data that they couldn't do before?

   [109]Saving the world with Open Data and Python by James Baster

Use Python for...

   [110]More
     * Web Development: [111]Django, [112]Pyramid, [113]Bottle, [114]Tornado,
       [115]Flask, [116]web2py
     * GUI Development: [117]tkInter, [118]PyGObject, [119]PyQt, [120]PySide,
       [121]Kivy, [122]wxPython, [123]DearPyGui
     * Scientific and Numeric: [124]SciPy, [125]Pandas, [126]IPython
     * Software Development: [127]Buildbot, [128]Trac, [129]Roundup
     * System Administration: [130]Ansible, [131]Salt, [132]OpenStack, [133]xonsh

>>> [134]Python Enhancement Proposals (PEPs): The future of Python is discussed here.
[135]RSS

>>> [136]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. [137]Learn more

   [138]Become a Member [139]Donate to the PSF

   [140]^ Back to Top
     * [141]About
          + [142]Applications
          + [143]Quotes
          + [144]Getting Started
          + [145]Help
          + [146]Python Brochure
     * [147]Downloads
          + [148]All releases
          + [149]Source code
          + [150]Windows
          + [151]macOS
          + [152]Other Platforms
          + [153]License
          + [154]Alternative Implementations
     * [155]Documentation
          + [156]Docs
          + [157]Audio/Visual Talks
          + [158]Beginner's Guide
          + [159]Developer's Guide
          + [160]FAQ
          + [161]Non-English Docs
          + [162]PEP Index
          + [163]Python Books
          + [164]Python Essays
     * [165]Community
          + [166]Diversity
          + [167]Mailing Lists
          + [168]IRC
          + [169]Forums
          + [170]PSF Annual Impact Report
          + [171]Python Conferences
          + [172]Special Interest Groups
          + [173]Python Logo
          + [174]Python Wiki
          + [175]Code of Conduct
          + [176]Community Awards
          + [177]Get Involved
          + [178]Shared Stories
     * [179]Success Stories
          + [180]Arts
          + [181]Business
          + [182]Education
          + [183]Engineering
          + [184]Government
          + [185]Scientific
          + [186]Software Development
     * [187]News
          + [188]Python News
          + [189]PSF Newsletter
          + [190]PSF News
          + [191]PyCon US News
          + [192]News from the Community
     * [193]Events
          + [194]Python Events
          + [195]User Group Events
          + [196]Python Events Archive
          + [197]User Group Events Archive
          + [198]Submit an Event
     * [199]Contributing
          + [200]Developer's Guide
          + [201]Issue Tracker
          + [202]python-dev list
          + [203]Core Mentorship
          + [204]Report a Security Issue

   [205]^ Back to Top
     * [206]Help & General Contact
     * [207]Diversity Initiatives
     * [208]Submit Website Bug
     * [209]Status

   Copyright ©2001-2024.  [210]Python Software Foundation  [211]Legal Statements
   [212]Privacy Policy

References

   1. https://peps.python.org/peps.rss
   2. https://www.python.org/jobs/feed/rss/
   3. https://feeds.feedburner.com/PythonSoftwareFoundationNews
   4. https://feeds.feedburner.com/PythonInsider
   5. https://www.python.org/#content
   6. https://www.python.org/#python-network
   7. https://www.python.org/
   8. https://www.python.org/psf/
   9. https://docs.python.org/
  10. https://pypi.org/
  11. https://www.python.org/jobs/
  12. https://www.python.org/community-landing/
  13. https://www.python.org/#top
  14. https://www.python.org/
  15. https://psfmember.org/civicrm/contribute/transact?reset=1&id=2
  16. https://www.python.org/#site-map
  17. https://www.python.org/
  18. javascript:;
  19. javascript:;
  20. javascript:;
  21. https://www.python.org/
  22. https://www.linkedin.com/company/python-software-foundation/
  23. https://fosstodon.org/@ThePSF
  24. https://www.python.org/community/irc/
  25. https://twitter.com/ThePSF
  26. https://www.python.org/about/
  27. https://www.python.org/about/apps/
  28. https://www.python.org/about/quotes/
  29. https://www.python.org/about/gettingstarted/
  30. https://www.python.org/about/help/
  31. http://brochure.getpython.info/
  32. https://www.python.org/downloads/
  33. https://www.python.org/downloads/
  34. https://www.python.org/downloads/source/
  35. https://www.python.org/downloads/windows/
  36. https://www.python.org/downloads/macos/
  37. https://www.python.org/download/other/
  38. https://docs.python.org/3/license.html
  39. https://www.python.org/download/alternatives
  40. https://www.python.org/doc/
  41. https://www.python.org/doc/
  42. https://www.python.org/doc/av
  43. https://wiki.python.org/moin/BeginnersGuide
  44. https://devguide.python.org/
  45. https://docs.python.org/faq/
  46. http://wiki.python.org/moin/Languages
  47. https://peps.python.org/
  48. https://wiki.python.org/moin/PythonBooks
  49. https://www.python.org/doc/essays/
  50. https://www.python.org/community/
  51. https://www.python.org/community/diversity/
  52. https://www.python.org/community/lists/
  53. https://www.python.org/community/irc/
  54. https://www.python.org/community/forums/
  55. https://www.python.org/psf/annual-report/2021/
  56. https://www.python.org/community/workshops/
  57. https://www.python.org/community/sigs/
  58. https://www.python.org/community/logos/
  59. https://wiki.python.org/moin/
  60. https://www.python.org/psf/conduct/
  61. https://www.python.org/community/awards
  62. https://www.python.org/psf/get-involved/
  63. https://www.python.org/psf/community-stories/
  64. https://www.python.org/success-stories/
  65. https://www.python.org/success-stories/category/arts/
  66. https://www.python.org/success-stories/category/business/
  67. https://www.python.org/success-stories/category/education/
  68. https://www.python.org/success-stories/category/engineering/
  69. https://www.python.org/success-stories/category/government/
  70. https://www.python.org/success-stories/category/scientific/
  71. https://www.python.org/success-stories/category/software-development/
  72. https://www.python.org/blogs/
  73. https://www.python.org/blogs/
  74. https://www.python.org/psf/newsletter/
  75. http://pyfound.blogspot.com/
  76. http://pycon.blogspot.com/
  77. http://planetpython.org/
  78. https://www.python.org/events/
  79. https://www.python.org/events/python-events/
  80. https://www.python.org/events/python-user-group/
  81. https://www.python.org/events/python-events/past/
  82. https://www.python.org/events/python-user-group/past/
  83. https://wiki.python.org/moin/PythonEventsCalendar#Submitting_an_Event
  84. https://www.python.org/shell/
  85. https://docs.python.org/3/tutorial/controlflow.html#defining-functions
  86. https://docs.python.org/3/tutorial/introduction.html#lists
  87. http://docs.python.org/3/tutorial/introduction.html#using-python-as-a-calculator
  88. https://docs.python.org/3/tutorial/controlflow.html
  89. https://docs.python.org/3/tutorial/
  90. https://www.python.org/doc/
  91. https://www.python.org/about/gettingstarted/
  92. https://www.python.org/downloads/release/python-3124/
  93. https://docs.python.org/
  94. https://jobs.python.org/
  95. https://blog.python.org/
  96. https://pyfound.blogspot.com/2024/06/python-language-summit-2024-pyrepl-new-default-repl-for-python.html
  97. https://pyfound.blogspot.com/2024/06/python-language-summit-2024.html
  98. https://pyfound.blogspot.com/2024/06/python-language-summit-2024-python-on-mobile.html
  99. https://pyfound.blogspot.com/2024/06/python-language-summit-2024-lightning-talks.html
 100. https://pyfound.blogspot.com/2024/06/python-language-summit-2024-annotations-as-transforms.html
 101. https://www.python.org/events/calendars/
 102. https://www.python.org/events/python-user-group/1782/
 103. https://www.python.org/events/python-events/1718/
 104. https://www.python.org/events/python-user-group/1585/
 105. https://www.python.org/events/python-user-group/1781/
 106. https://www.python.org/events/python-events/1729/
 107. https://www.python.org/success-stories/
 108. https://www.python.org/success-stories/saving-the-world-with-open-data-and-python/
 109. https://www.python.org/success-stories/saving-the-world-with-open-data-and-python/
 110. https://www.python.org/about/apps
 111. http://www.djangoproject.com/
 112. http://www.pylonsproject.org/
 113. http://bottlepy.org/
 114. http://tornadoweb.org/
 115. http://flask.pocoo.org/
 116. http://www.web2py.com/
 117. http://wiki.python.org/moin/TkInter
 118. https://wiki.gnome.org/Projects/PyGObject
 119. http://www.riverbankcomputing.co.uk/software/pyqt/intro
 120. https://wiki.qt.io/PySide
 121. https://kivy.org/
 122. http://www.wxpython.org/
 123. https://dearpygui.readthedocs.io/en/latest/
 124. http://www.scipy.org/
 125. http://pandas.pydata.org/
 126. http://ipython.org/
 127. http://buildbot.net/
 128. http://trac.edgewall.org/
 129. http://roundup.sourceforge.net/
 130. http://www.ansible.com/
 131. https://saltproject.io/
 132. https://www.openstack.org/
 133. https://xon.sh/
 134. https://www.python.org/dev/peps/
 135. https://www.python.org/dev/peps/peps.rss
 136. https://www.python.org/psf/
 137. https://www.python.org/psf/
 138. https://www.python.org/users/membership/
 139. https://www.python.org/psf/donations/
 140. https://www.python.org/#python-network
 141. https://www.python.org/about/
 142. https://www.python.org/about/apps/
 143. https://www.python.org/about/quotes/
 144. https://www.python.org/about/gettingstarted/
 145. https://www.python.org/about/help/
 146. http://brochure.getpython.info/
 147. https://www.python.org/downloads/
 148. https://www.python.org/downloads/
 149. https://www.python.org/downloads/source/
 150. https://www.python.org/downloads/windows/
 151. https://www.python.org/downloads/macos/
 152. https://www.python.org/download/other/
 153. https://docs.python.org/3/license.html
 154. https://www.python.org/download/alternatives
 155. https://www.python.org/doc/
 156. https://www.python.org/doc/
 157. https://www.python.org/doc/av
 158. https://wiki.python.org/moin/BeginnersGuide
 159. https://devguide.python.org/
 160. https://docs.python.org/faq/
 161. http://wiki.python.org/moin/Languages
 162. https://peps.python.org/
 163. https://wiki.python.org/moin/PythonBooks
 164. https://www.python.org/doc/essays/
 165. https://www.python.org/community/
 166. https://www.python.org/community/diversity/
 167. https://www.python.org/community/lists/
 168. https://www.python.org/community/irc/
 169. https://www.python.org/community/forums/
 170. https://www.python.org/psf/annual-report/2021/
 171. https://www.python.org/community/workshops/
 172. https://www.python.org/community/sigs/
 173. https://www.python.org/community/logos/
 174. https://wiki.python.org/moin/
 175. https://www.python.org/psf/conduct/
 176. https://www.python.org/community/awards
 177. https://www.python.org/psf/get-involved/
 178. https://www.python.org/psf/community-stories/
 179. https://www.python.org/success-stories/
 180. https://www.python.org/success-stories/category/arts/
 181. https://www.python.org/success-stories/category/business/
 182. https://www.python.org/success-stories/category/education/
 183. https://www.python.org/success-stories/category/engineering/
 184. https://www.python.org/success-stories/category/government/
 185. https://www.python.org/success-stories/category/scientific/
 186. https://www.python.org/success-stories/category/software-development/
 187. https://www.python.org/blogs/
 188. https://www.python.org/blogs/
 189. https://www.python.org/psf/newsletter/
 190. http://pyfound.blogspot.com/
 191. http://pycon.blogspot.com/
 192. http://planetpython.org/
 193. https://www.python.org/events/
 194. https://www.python.org/events/python-events/
 195. https://www.python.org/events/python-user-group/
 196. https://www.python.org/events/python-events/past/
 197. https://www.python.org/events/python-user-group/past/
 198. https://wiki.python.org/moin/PythonEventsCalendar#Submitting_an_Event
 199. https://www.python.org/dev/
 200. https://devguide.python.org/
 201. https://github.com/python/cpython/issues
 202. https://mail.python.org/mailman/listinfo/python-dev
 203. https://www.python.org/dev/core-mentorship/
 204. https://www.python.org/dev/security/
 205. https://www.python.org/#python-network
 206. https://www.python.org/about/help/
 207. https://www.python.org/community/diversity/
 208. https://github.com/python/pythondotorg/issues
 209. https://status.python.org/
 210. https://www.python.org/psf-landing/
 211. https://www.python.org/about/legal/
 212. https://www.python.org/privacy/


Usage: http://www.kk-software.de/kklynxview/get/URL
e.g. http://www.kk-software.de/kklynxview/get/http://www.kk-software.de
Errormessages are in German, sorry ;-)