
python
yutongda123
这个作者很懒,什么都没留下…
展开
-
python 输出字符串的最长子串
假定 s 是小写字母的字符串。编写程序,输出 s 的最长子串(子串必须是字母顺序)。如: s = 'azcbobobegghakl',则应输出:Longest substring in alphabetical order is: beggh又如: s = 'abcbcd',则应输出第一个子串:Longest substring in alphabetical order is: abc s=in...原创 2018-04-11 00:24:18 · 7827 阅读 · 0 评论 -
python字符串操作方法大全
转载自http://www.jb51.net/article/47956.htm1、去空格及特殊符号复制代码代码如下:s.strip().lstrip().rstrip(',')2、复制字符串复制代码代码如下:#strcpy(sStr1,sStr2)sStr1 = 'strcpy'sStr2 = sStr1sStr1 = 'strcpy2'print sStr23、连接字符串复制代码代码如下:#s...转载 2018-04-10 23:53:05 · 308 阅读 · 0 评论 -
Pyinstaller打包Python3.6.3 成exe文件及解决办法
本人python3.6.4无法使用py2exe生成exe文件,按照下面方法实现转载自https://www.jianshu.com/p/52dc35c4df801。安装pip install pyinstaller2。或者执行pip install --upgrade pyinstaller3。执行c:\helloworld>pyinstaller -F helloworld.pyc:\h...转载 2018-04-02 21:58:26 · 2651 阅读 · 4 评论