Python3 执行 Import Python3 Import 语句 Python3 命名空间 Python3 执行 Import #!/usr/bin/python3 # Fibonacci numbers module def fib(n): # return Fibonacci series up to n result = [] a, b = 0, 1 while b < n: result.append(b) a, b = b, a + b return result if __name__ == "__main__": f = fib(100) print(f) Python3 Import 语句 Python3 命名空间