import用法
第一个模块文件名为test.py
def my_func1():
f = open('./test12.txt', 'a', encoding='utf-8')
f.write('长路漫漫唯剑作伴')
f.close()
def my_func2():
f = open('./test12.txt', 'r', encoding='utf-8')
content = f.read()
print(content)
print(my_func2())
第二个模块
from test import my_func2
my_func2()
from test import my_func1
my_func1()
网友评论