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

📄 015-inboxsearch.py

📁 这是当时学习pys60的时候找到的一些小例子
💻 PY
字号:
import inbox, appuifwbox = inbox.Inbox()query = appuifw.query(u"Search for:", "text").lower()hits = []ids = []for sms_id in box.sms_messages():      msg = box.content(sms_id).lower()      if msg.find(query) != -1:           hits.append(msg[:25])           ids.append(sms_id)index = appuifw.selection_list(hits, 1)if index >= 0:        appuifw.note(box.content(ids[index]))

⌨️ 快捷键说明

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