使用pyinstaller导入如下.py
# python3.6
x = input()
x = int(x)
def test(x):
a = 1
b = a + x
print("hello world")
return b
k = test(x)# python3.6
x = input()
使用pyinstaller导入如下.py
# python3.6
x = input()
x = int(x)
def test(x):
a = 1
b = a + x
print("hello world")
return b
k = test(x)# python3.6
x = input()