作者查詢 / zerof

總覽項目: 發文 | 留言 | 暱稱
作者 zerof 在 PTT [ Python ] 看板的留言(推文), 共274則
限定看板:Python
[問題] pip安裝了卻找不到requests模組
[ Python ]15 留言, 推噓總分: +6
作者: hcl012 - 發表於 2021/03/11 17:44(5年前)
6Fzerof: 試試 python -m pip03/11 18:56
[問題] 爬蟲程式如何判斷某些連結的檔名
[ Python ]2 留言, 推噓總分: 0
作者: martinqqq321 - 發表於 2021/03/01 21:17(5年前)
1Fzerof: https://mdn.io/Content-Disposition03/02 02:01
2Fzerof: or just search MDN for “Content-Disposition”03/02 02:05
[問題] linux呼叫so函式,執行出現undefined s..
[ Python ]5 留言, 推噓總分: +1
作者: asd24693120 - 發表於 2021/02/16 00:28(5年前)
2Fzerof: 不用 include Python.h?02/16 05:21
3Fzerof: 你如果只有要用幾個 function 的話參考 ctypes 看看02/16 05:51
[問題] 如何同時實現 ChatBot 和 Scheduled Code
[ Python ]2 留言, 推噓總分: 0
作者: yoche2000 - 發表於 2021/02/12 23:14(5年前)
1Fzerof: discord.ext.tasks02/13 02:19
[問題] 新手詢問web client的問題
[ Python ]1 留言, 推噓總分: 0
作者: te1e1 - 發表於 2021/02/11 01:05(5年前)
1Fzerof: json.loads02/11 01:22
[問題] x!=y!=z!=I!=j 這樣如何簡潔寫?
[ Python ]29 留言, 推噓總分: +7
作者: pmove - 發表於 2020/05/23 17:45(5年前)
16Fzerof: operator.ne05/23 20:30
24Fzerof: ....你可以用 list comprehension +zip05/24 17:32
25Fzerof: zip 會漏, itertools.combinations 才對05/24 18:08
Re: [問題] Regular expression quiz
[ Python ]7 留言, 推噓總分: +2
作者: zerof - 發表於 2020/05/10 22:35(5年前)
1Fzerof: btw, 其實有regexp 版05/10 22:40
[問題] multiprocess變得很慢?
[ Python ]18 留言, 推噓總分: +5
作者: tsaiminghan - 發表於 2020/04/27 02:02(5年前)
17Fzerof: 樓樓上正解04/30 23:54
[問題] subprocess popen
[ Python ]17 留言, 推噓總分: +4
作者: tsaiminghan - 發表於 2020/04/12 18:55(5年前)
11Fzerof: 2沒意外的話是 windows cmd 的問題,default encoding 是 c04/16 13:36
12Fzerof: p950, 可以轉 65001 應該就會正常(chcp 65001)04/16 13:36
13Fzerof: 1 的話可以試試把前面的 cmd /c 拿掉應該就可以了04/16 13:45
14Fzerof: hmm... 試試看在 Popen 的時候帶 encoding=“utf-8” 看看(04/20 00:59
15Fzerof: 或是你用 cp932 也看得到簡中的話可以試試用 cp932 )04/20 00:59
16Fzerof: cmd 切成 utf8 會有 print 的問題表示你的 string 不是 utf04/20 01:19
17Fzerof: 8...04/20 01:19
[問題] python 非同步問題
[ Python ]3 留言, 推噓總分: +1
作者: x9060000456 - 發表於 2019/05/01 13:35(6年前)
3Fzerof: ProcessPoolExecutor05/02 10:55