py脚本打包
使用py2exe,可打包为单个文件,打包后程序启动快,比pyinstaller快太多了。
setup 文件示例参考
int main(int argc, char* argv[])
{
map<string, string> mapData;
mapData["a"] = "aaa";
mapData["b"] = "bbb";
mapData["c"] = "ccc";
for (map<string, string>::iterator i=mapData.begin(); i!=mapData.end(); /*i++*/)
{
if (i->first == "b")
{
mapData.erase(i++);
}
else
{
i++;
}
}
return 0;
}
[tbd]
###summary
#####wather
###words list
holistic 英[həʊˈlɪstɪk] 美[hoˈlɪstɪk]
adj. 全盘的,整体的;功能整体性的
[例句]Optimal health is the primary goal of holistic medical practice.
最佳的健康状态是整体医疗实践的首要目标。
proposal 英[prəˈpəʊzl] 美[prəˈpozəl]
n. 提议;建议;求婚;〈美〉投标
名词复数:proposals
[例句]The last proposal was to tax small accounts just 3 %.
最后的提议是对小额账户仅征税3%。
deliver 英[dɪ’lɪvə(r)] 美[dɪˈlɪvɚ]
vt. 发表;递送;交付;使分娩
vi. 投递;传送
第三人称单数:delivers;过去分词:delivered;现在分词:delivering;…
[例句]There are a few ways carmakers get smaller engines to deliver high performance.
汽车制造商有几个办法可以使小型发动机实现高性能。
majority 英[mə’dʒɒrətɪ] 美[məˈdʒɔrɪti, -ˈdʒɑr-]
n. 多数;(获胜的)票数;成年;法定年龄
名词复数:majorities
[例句]Indeed , the majority of analysts remain bullish on the company.
确实,大多数分析师仍然看好亚马逊的前景。
Summary: zookeeper gurrentee
###What ZooKeeper Guarantees about Watches
With regard to watches, ZooKeeper maintains these guarantees: