6.3 口令保管箱
项目要求:在你的计算机上,使用口令管理器软件,利用一个主控口令,解锁口令管理器。然后将某个账户口令拷贝到剪贴板,再将它粘贴到网站的口令输入框。
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
'this is a password locker program'
password = {
'sina' : 'abcsina',
'blog' : 'abcblog',
'logo' : 'abclogo',
}
import pyperclip
if __name__ == '__main__':
a = input('Please input your accont: ').lower()
if a in password:
pyperclip.copy(password[a])
print('password for %s copied to clipboard.' % a)
else:
print('there is no account named ' + a)
try:
an = input('do you want to add this account in password? yes/no ')
if an == 'no':
print('thanks for using password locker.')
elif an == 'yes':
print('haha, this function has not developed yet')
except:
print('exit program')
思路:
- 当时觉得用sys.argv很麻烦,明明可以直接执行input代替。所以就没按照书中要求做了。
- 额,这个当时为了减少行数,把注释都删除了。现在看来是个愚蠢的决定,看自己的当初写的代码都觉得有点费劲。
- 书中给的步骤:程序设计和数据结构→处理命令行参数→复制正确的口令
- 这个项目书中解释很详细,就不一一解释了。
- bat批处理文件和命令行参数,需要看附录B多理解。当初费了一些功夫才理解sys.argv是什么东西
6.4 在 Wiki 标记中添加无序列表
项目要求:
# 复制如下文字:
Lists of animals
Lists of aquarium life
Lists of biologists by author abbreviation
Lists of cultivars
# 运行 bulletPointAdder.py 程序,剪贴板中就会替换成下面的内容:
* Lists of animals
* Lists of aquarium life
* Lists of biologists by author abbreviation
* Lists of cultivars
下面是代码:
import pyperclip
text = pyperclip.paste()
lines = text.split('\n')
for i in range(len(lines)):
lines[i] = '* ' + lines[i]
text = '\n'.join(lines)
pyperclip.copy(text)
print('add mark is over')
6.7 实践项目:表格打印
编写一个名为 printTable()的函数,它接受字符串的列表的列表,将它显示在组织良好的表格中,每列右对齐。假定所有内层列表都包含同样数目的字符串。例如,该值可能看起来像这样:
tableData = [['apples', 'oranges', 'cherries', 'banana'],
['Alice', 'Bob', 'Carol', 'David'],
['dogs', 'cats', 'moose', 'goose']]
你的 printTable()函数将打印出:
apples Alice dogs
oranges Bob cats
cherries Carol moose
banana David goose
代码如下:
"""下面是代码正文"""
tableData = [['apples', 'oranges', 'cherries', 'banana'],
['Alice', 'Bob', 'Carol', 'David'],
['dogs', 'cats', 'moose', 'goose']]
def printTable(tableData):
# 下面是为了求每个内层列表的最长字符串的长度
colWidths = [0] * len(tableData)
for i in range(len(colWidths)):
colWidths[i] = len(sorted(tableData[i], key=(lambda x: len(x)))[-1])
for x in range(len(tableData[0])):
for y in range(len(tableData)):
print(tableData[y][x].rjust(colWidths[y]), end=' ')
print('') # 换行
printTable(tableData)
思路:
- 注意找到每个内层列表的最长字符串的长度
- 然后就是rjust方法,看到x,y列表就自然而然用for嵌套for打印即可
环境:python3
想做这个系列文章,就是因为当时看这本书时,想看看网上有没更优美的解决,但是略难找到。所以就把自己的项目练习放在了一个txt文件中,现在把练习代码放到这里,有不足之处希望大家能给出指导意见及相互交流、提升。