全部博文(512)
2024年(2)
2022年(2)
2021年(6)
2020年(59)
2019年(4)
2018年(10)
2017年(5)
2016年(2)
2015年(4)
2014年(4)
2013年(16)
2012年(47)
2011年(65)
2010年(46)
2009年(34)
2008年(52)
2007年(52)
2006年(80)
2005年(22)
发布时间:2020-03-20 10:08:27
参考链接1:https://blog.csdn.net/VictoriaW/article/details/75314737参考链接2:https://blog.csdn.net/sheldonwong/article/details/86684761Unicode和str## str 我们平时写的用引号括起来的字符串都是str类型的。>>> x = '哈哈'>>> x'\xb9\xfe\xb9\xfe'### 根据上面的打印结果,可以知道str类型的x存.........【阅读全文】
发布时间:2020-03-20 09:51:58
python中, 我们平常使用最多的三种编码为 gbk/gb2312, utf8 , unicode。 而python中并没有一个函数来进行 编码的判断。今天,主要对这三种编码进行讨论,并给出区分这三种编码的函数。我们知道, unicode编码是1位 gbk,gb2312是.........【阅读全文】
发布时间:2020-03-20 09:22:37
转自:https://www.jianshu.com/p/2207109df3df问题使用正则表达式匹配字符串时,返回的是最长匹配,需要修改它变成查找最短的匹配。解决方案这个问题,一般出现在需要匹配一对分隔符之间的文本时,比如: import retext1 = 'Computer says "no."' text2 = 'Computer says "n.........【阅读全文】
发布时间:2020-03-19 10:11:38
2层嵌套,字典的value为dict情况m={"a":{"f1":1,"f2":2},"b":{"f1":100,"f2":2},"c":{"f1":10,"f2":22}}print rr = sorted(m.items(), key=lambda x:x[1]['f1'], reverse=True)print r......【阅读全文】
AAAA888AA82013-11-21 19:26
用 sed 寫一個程式, 從 stdin 讀進, 過濾後寫到 stdout. 過濾條件如下:
將 comment 刪除.
若 commnet 刪除後為一空行, 則刪掉這行.
若為一空行, 則刪掉這行.
若 $ 後接一串數字, 則把 $ 刪除.
把 $klim 換成 $milk
把 $milk 換成 $oak
範例如下:
=======this-is-my-prompt====== cat IN-5
# this is a comment line.
$klim owes $milk $1000 # comment here
$milk wins $oak 20000
Klim owes milk $$1000 # comment
# comment line also
milk wins $oak $20000
=======this-is-my-prompt====== ./ex5 < IN-5
$milk owes $oak 1000
$oak wins $oak 20000
Klim owes milk $1000
milk wins $oak 20000
想請問這串 若 $ 後接一串數字, 則把 $ 刪除.
爬了不少聞問過不少人 都沒辦法只刪除前面的$ 請問這要怎麼打..