class hlo:
x = 12
def helo(self):
print('hell0')
a = 133
def good():
print('good')
def main():
print('hi')
if __name__ == '__main__':
main()
from hello import hlo
'''
直接from hello需要两个文件在一个文件夹且本文件夹设置为Sources Root,否则加上相对路径(.hello)或者绝对路径
'''
b = hlo().x
fun = hlo().helo()
print(b)
print(fun)
import hello
f = hello.hlo().x
fun3 = hello.hlo().helo()
print(f)
print(fun3)
import hello
'''
直接import需要两个文件在一个文件夹且本文件夹设置为Sources Root
'''
c = hello.a
fun2 = hello.good()
print(c)
print(fun2)
from hello import a,good
print(a)
print(good())
'''
function均有返回值打印出来
'''
'''
PS:千万千万不要和第三方包或者官方包的名字重复!!!
'''
import hi
hi.main()
'''
当需要调用一个整体的py文件时可以导入这个文件再通过文件名.mian()去执行
'''