python3.5.3rc1学习八:文件打包

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('请按任意键退出')

原文地址:https://www.cnblogs.com/51testing/p/7928541.html