码迷,mamicode.com
首页 > 编程语言 > 详细

python引入自己写的Py文件

时间:2020-04-24 01:50:39      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:style   col   print   code   目录   文件   lse   lib   class   

1、新建一个test_a.py文件

def print_sum(a,b):
    if(type(a)==int or type(b) == int):
        print(a+b)
    else:
        print("请输入数字")

   新建一个test_b.py文件,在b中引入test_a

import test_a
test_a.print_sum(1,9)

  可以看到调用成功

2、如果想要在任何目录下导入a.py,把test_a.py文件放到Python安装目录下的lib文件夹里面即可。

python引入自己写的Py文件

标签:style   col   print   code   目录   文件   lse   lib   class   

原文地址:https://www.cnblogs.com/andrew-address/p/12764704.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!