from cx_Freeze import setup, Executable
setup(name='test to exe',
version = '0.1',
description='test from py file to exe file',
executables = [Executable("demo13_setup.py")]
)
# 多行打印
print('''
第一行内容
第二行内容
第三行内容
。。。。
==========================
| |
| |
| |
| Welcome |
| |
| |
| |
==========================
''')
input('请按任意键退出')