Toast,A toast provides simple feedback about an operation in a small popup. 对于操作提供一个简单反馈信息. 官网链接:http://developer.android.com/reference/android/widget/Toast.html 常量有两个: LENGTH_LONG 显示稍微长点的时间,大概在5秒左右LENGTH_SHORT 显示稍微短点的时候,大概在3秒左右 比较简单的使用 代码: Toas
随便拉了个学习时用的测试程序来做的实例,原程序如下: #Filename:for.py count=0 for i in range(1,100,2): count+=i else: print 'that\'s over' print count raw_input("input Enter to quit:") 下面是给程序写的py2exe脚本: #name:mysetup.py from distutils.core import setup import py2exe setu