码迷,mamicode.com
首页 >  
搜索关键字:python python类 类实例化 类多重继承 类私有化    ( 135629个结果
Python 字符串操作(string替换、删除、截取、复制、连接、比较、查找、包含、大小写转换、分割等)
去空格及特殊符号 s.strip().lstrip().rstrip(',')复制字符串#strcpy(sStr1,sStr2) sStr1 = 'strcpy' sStr2 = sStr1 sStr1 = 'strcpy2' print sStr2连接字符串#strcat(sStr1,sStr2)...
分类:编程语言   时间:2014-06-15 23:51:33    阅读次数:341
[leetcode]Unique Paths @ Python
原题地址:https://oj.leetcode.com/problems/unique-paths/题意:A robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The ...
分类:编程语言   时间:2014-06-15 23:37:55    阅读次数:311
[leetcode]Unique Paths II @ Python
原题地址:https://oj.leetcode.com/problems/unique-paths-ii/题意:Follow up for "Unique Paths":Now consider if some obstacles are added to the grids. How many ...
分类:编程语言   时间:2014-06-15 23:33:26    阅读次数:353
JavaScript
今天看了点JavaScript,里面的内容和Visual Basic的语言类似。也许大家都会说:语言嘛,都是有通用性的。这也不奇怪他和Visual Basic类似。学习了python、django、Visal Basic。都没有能够学到家是因为语言的语句是不同的但是用法也是不一样的。但是我能看懂代....
分类:编程语言   时间:2014-06-15 23:16:11    阅读次数:375
Google Python Style Guide
http://google-styleguide.googlecode.com/svn/trunk/pyguide.html#Commentshttp://zh-google-styleguide.readthedocs.org/en/latest/google-python-styleguide/...
分类:编程语言   时间:2014-06-15 23:01:13    阅读次数:216
crontab常见错误(执行python脚本 no module)
在crontab定时执行python脚本,在shell下没有问题,在crontab中报no module,找不到安装的库。1 crond服务未启动crontab不是Linux内核的功能,而是依赖一个crond服务,这个服务可以启动当然也可以停止。如果停止了就无法执行任何定时任务了,解决的方法是打开它...
分类:编程语言   时间:2014-06-15 22:17:58    阅读次数:423
[leetcode]Minimum Window Substring @ Python
原题地址:https://oj.leetcode.com/problems/minimum-window-substring/题意:Given a string S and a string T, find the minimum window in S which will contain all...
分类:编程语言   时间:2014-06-15 22:10:42    阅读次数:1109
[leetcode]Merge Two Sorted Lists @ Python
原题地址:https://oj.leetcode.com/problems/merge-two-sorted-lists/题意:Merge two sorted linked lists and return it as a new list. The new list should be made...
分类:编程语言   时间:2014-06-15 21:58:31    阅读次数:238
PYTHON对文件及文件夹的一些操作
python中对文件、文件夹的操作需要涉及到os模块和shutil模块。 创建文件: 1) os.mknod("test.txt") 创建空文件 2) open("test.txt",w) 直接打开一个文件,如果文件不存在则创建文件 创建目录: os.mkdir("file") 创建目录 复制文件....
分类:编程语言   时间:2014-06-15 21:53:58    阅读次数:247
[leetcode]Permutation Sequence @ Python
原题地址:https://oj.leetcode.com/submissions/detail/5341904/题意:The set[1,2,3,…,n]contains a total ofn! unique permutations.By listing and labeling all of ...
分类:编程语言   时间:2014-06-15 21:33:16    阅读次数:270
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!