
日常心得
w317672256
这个作者很懒,什么都没留下…
展开
-
windows 用python os.rename()
https://blog.youkuaiyun.com/weixin_43753374/article/details/84312561 参考上面文章的代码终于搞出来了个可以使用的 import os path='F:/chromedownload/rightdoc' os.chdir(path) n=2 files=os.listdir() for file in files: s=file.fin...原创 2019-07-31 02:37:49 · 645 阅读 · 0 评论 -
python tutor 更方便的debug神器
之前看过一个人介绍这个在线应用 http://pythontutor.com/ 这次试了一下,果然比debug更为直观,不过不能无缝从leetcode粘贴过来 #一遍哈希表 class Solution: def twoSum(nums,target): d={} for i in range(len(nums)): if ta...原创 2019-07-31 16:41:38 · 1792 阅读 · 0 评论