Refun-20241009
🏷 ☺️Refun
以后要多关注数据而不是界面,毕竟数据模型的适用范围更大,而界面只是 UI 设计。数据方面的编程,Python 是绕不开的,所以以后要多关注 Python。
这是 Python 函数:
def fib(n): # write Fibonacci series up to n
"""Print a Fibonacci series up to n."""
a, b = 0, 1
while a < n:
print(a, end=' ')
a, b = b, a+b
print()
# Now call the function we just defined:
fib(2000)
编辑>>