Python 系列文章 —— import 导包篇

2022-01-14 14:48:57 浏览数 (1)

  • do.py
代码语言:python代码运行次数:0复制
# 导入模块
import hello
 
# 现在可以调用模块里包含的函数了
hello.sayhello()


## 直接导入方法
from hello import sayhello
sayhello()



## 导入所有方法
from hello import *
sayhello()
world()


print("测试包的使用")

import cal.calculator
print(cal.calculator.add(1,2))


from cal import calculator
# 使用包的模块的方法
print(calculator.multiply(3,6))
  • calculator
代码语言:python代码运行次数:0复制
def add(a,b) :
   return a b

def reduce(a,b) :
   return a-b

def multiply(a,b) :
   return a*b

def divide(a,b) :
   return a/b

0 人点赞