⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 util.py

📁 minimal python variant for small footprint apps like embedded apps
💻 PY
字号:
# Module 'util' -- some useful functions that don't fit elsewhere# NB: These are now built-in functions, but this module is provided# for compatibility.  Don't use in new programs unless you need backward# compatibility (i.e. need to run with old interpreters).# Remove an item from a list.# No complaints if it isn't in the list at all.# If it occurs more than once, remove the first occurrence.#def remove(item, list):	if item in list: list.remove(item)# Return a string containing a file's contents.#def readfile(fn):	return readopenfile(open(fn, 'r'))# Read an open file until EOF.#def readopenfile(fp):	return fp.read()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -