python自定义包的调用问题

# hello.py
# 类
class hlo:
    x = 12
    def helo(self):
        print('hell0')



a = 133
def good():
    print('good')

# hi.py
def main():
    print('hi')

if __name__ == '__main__':
    main()
# start.py
# # 调用类里的变量及方法
## 方法一
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)


# 调用py文件里的变量及方法
## 方法一(不常用)
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()去执行
'''

你可能感兴趣的:(python基础,python,开发语言)