成功案例
>>> Python 增强提案 (PEP): Python 的未来 在这里讨论。 RSS
>>> Python 软件基金会
Python 软件基金会的使命是促进、保护和发展 Python 编程语言,并支持和促进多元化和国际化的 Python 程序员社区的成长。 了解更多
注意:虽然 JavaScript 不是本网站的必需品,但您与内容的互动将受到限制。请开启 JavaScript 以获得完整体验。
# 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
可扩展编程的核心是定义函数。Python 允许强制和可选参数、关键字参数,甚至任意参数列表。 有关在 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')]
列表(在其他语言中称为数组)是 Python 理解的复合数据类型之一。列表可以被索引、切片和使用其他内置函数进行操作。 有关 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
使用 Python 进行计算很简单,表达式语法也很直观:运算符 +
、-
、*
和 /
按预期工作;括号 ()
可用于分组。 有关 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
Python 了解其他语言使用的常见控制流语句——if
、for
、while
和 range
——当然也有一些自己的变化。 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.
任何其他语言的经验丰富的程序员都可以很快地学会 Python,初学者也会发现 Python 的简洁语法和缩进结构很容易学习。 激发您的兴趣,了解我们的 Python 3 概述。
Python 是一种编程语言,它可以让您快速工作 并更有效地集成系统。 了解更多
Python 软件基金会的使命是促进、保护和发展 Python 编程语言,并支持和促进多元化和国际化的 Python 程序员社区的成长。 了解更多