Python
二十六画生的博客
国内Top5硕士,先后在京东、字节从事多年后端开发、大数据开发。
展开
-
python3 ,split 用法
#!/usr/bin/python3 txt = "Google#Runoob#Taobao#Facebook"# 第二个参数为 1,返回两个参数列表x = txt.split("#", 1)print(x)res1="36939084 hdfs......"srcSize = res1.split(" ",1)[0]print(srcSize)res2="36939904 hdfs......"tgtSize = res2.split(" ",1)[0]print(...原创 2020-05-30 20:18:50 · 535 阅读 · 0 评论 -
mac pycharm 安装 各种包的方法,比如beautifulsoup等
12原创 2020-02-27 15:10:13 · 2918 阅读 · 0 评论 -
python open函数的中文路径报错
如下:# 打开一个文件# fo = open("D://temp//t1.txt", "r") #T# fo = open("D:/temp/t1.txt", "w") #T# fo = open("D:/temp/t1.txt", "r") #T# fo = open("D:/temp/t1.txt", "w") #T# fo = open("D:/测试文件/t1.txt", "...原创 2019-03-18 10:55:06 · 2381 阅读 · 0 评论 -
python函数的全局变量、局部变量
例1:total = 0; # 这是一个全局变量# 可写函数说明def sum(arg1, arg2): # 返回2个参数的和." # total = arg1 + arg2; # total在这里是局部变量. # print "函数内是局部变量 : ", total # return total; # 函数内是局部变量 : 30 #...原创 2019-03-18 10:12:59 · 1352 阅读 · 0 评论 -
python,all any的区别
如下:>>> all(())True>>> all([])True>>> all(1,2,3)Traceback (most recent call last): File "<stdin>", line 1, in <module>TypeError: all() takes exactly on...原创 2019-03-20 09:18:31 · 282 阅读 · 0 评论 -
linux上运行python脚本,No such file or directory
vim编辑器,按esc进入命令行模式,输入:set ff=unix 再:wq保存 运行即可。原创 2019-02-28 14:37:15 · 2049 阅读 · 0 评论 -
linux上运行python脚本,SyntaxError: invalid syntax
1#!/usr/bin/env python3 开头的这句务必要有,不然就会报错,从line2一直到line6都有报错;版本是python3,则print必须要有(),不然会报错business :SyntaxError: invalid syntax#!/usr/bin/env python3import sysimport osbusiness = sys.argv[1];...原创 2019-02-28 14:35:33 · 9740 阅读 · 0 评论 -
python字符串截取
如下:a[0]a[1:3],中间是冒号,不是逗号;前面的下标小于后面的下标才有内容.Python 2.7.5>>> a='Hello' print a[0]; File "<stdin>", line 1 a='Hello' print a[0]; ^SyntaxError: invalid syn...原创 2019-02-28 14:01:46 · 3515 阅读 · 0 评论 -
Python读取、写入文件
version:2.71 读取读取时,在win下,不能用直接复制过来的路径,要把\改成/,同时路径不能含有中文(默认编码下)In [170]: path = 'F:/t1.txt'In [171]: lines = [x.rstrip() for x in open(path)]In [172]: linesOut[172]: ['123', '456', '789']In [173...原创 2018-04-21 17:17:22 · 2458 阅读 · 0 评论 -
Python初学
version:2.7字符串strip方法:切记是去除头尾的那个字符,如果那个字符不在头尾,print后也没有变化In [89]: a_str = " 000 abc 000"In [90]: a_str.strip();In [91]: a_strOut[91]: ' 000 abc 000'In [92]: a_str=" 00 abc 000 "In [...原创 2018-04-21 11:38:29 · 248 阅读 · 0 评论