Python之禅(图解/中英文对照)
Python 之禅 中英文对照The Zen of Python, by Tim PetersPython之禅 by Tim PetersBeautiful is better than ugly.优美胜于丑陋(Python 以编写优美的代码为目标)Explicit is better than implicit.明了胜于晦涩(优美的代码应当是明了的,命名规范,风格相似)Simple is bet...Continue reading >>
抓取网页的链接及标题,学学Python爬虫
◎抓取网页链接
import requests import sys import re from bs4 import BeautifulSoup import prettytable as pt def getHTMLText(url):...Continue reading >>
生产实践:
用于Gitlab sidekiq队列停滞任务数清除重启
学习技巧:
Shell while、function,Python BeautifulSoup使用
脚本内容:
Gitlab CI任务停滞数达到几百时会导致发布系统任务阻塞,影响开发使用,之前出过几次问题,搞个脚本...
Continue reading >>Python learning book and source code
Head First Python(中文版) [Download]
head first python [Dow...
'''
定义:用', ", """,引起来的连续字符串,只要为变量分配一个值即可,可以使用方括号来截取字符串。
字符串一旦创建,将不可修改。一旦修改或者拼接,将会重新生成字符串。
Python 3的字符串使用Unicode,直接支持多语言。
字符串是可迭代的,可以使用切片,索引获取元素
''...
Continue reading >>Mac键盘符号和修饰键说明
⌘ Command
⇧ Shift
⌥ Option
⌃ Control
↩︎ Return/Enter
⌫ Delete
⌦ 向前删除键(Fn+Delete)
↑ 上箭头
↓ 下箭头
← 左箭头
→ 右箭头
⇞ Page Up(Fn+↑)
⇟&...