2023/6/19

python list 转逗号分割

list1 = [1,2,3,4] str = ','.join(list1) print(str) 输出1,2,3,4 list1 = [1,2,3,4] str = ','.join("'{0}'".format(x) for x in list1) print(str) 输出 '1','2','3','…

  • python
  • 2023/6/19
  • 688
  • 2023/4/4

    windows 倒计时,使用python tkinter实现

    #!/usr/bin/python3 from tkinter import * import base64 import time import _thread import queue import pygame class Application(Frame): """右键菜单item点击事件 点击后开启多…

  • python windows
  • 2023/4/4
  • 608
  • 2022/1/13

    python tkinter实现倒计时

    #!/usr/bin/python3 from tkinter import * import base64 import time import _thread import queue class Application(Frame):     "&…

  • python
  • 2022/1/13
  • 714
  • 2022/1/13

    python 打包exe

    安装 python install pyinstaller 参数详解 -F, –onefile打包一个单个文件,如果你的代码都写在一个.py文件的话,可以用这个,如果是多个.py文件就别用 -D, –onedir打包多个文件,在dist中生…

  • python
  • 2022/1/13
  • 766
  • 2021/5/27

    m1 mac chrome 带参数启动 mac selenium连接已启动浏览器

    #编辑文件 vi ~/.zshrc #添加下面内容 export PATH="/Applications/Google Chrome.app/Contents/MacOS:$PATH" #命令行运行下面命令 Google\ Chrome --remote-debugging-port=9222 --user-data-dir=&…

  • macos python selenium
  • 2021/5/27
  • 1,120
  • 2021/5/26

    python 监听键盘事件

    pynput from pynput.keyboard import Key,Listener def press(key):     print(key)     if key ==Key.space:         do something with Listener(on_press = press) as …

  • python
  • 2021/5/26
  • 833
  • 2021/4/25

    python selenium反爬取解决方案

    google安装目录下运行 chrome.exe --remote-debugging-port=9222 --user-data-dir="C:\selenum\AutomationProfile" python文件 from selenium import webdriver from sel…

  • python selenium
  • 2021/4/25
  • 988