读书笔记Python

Posted benguoby2

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读书笔记Python相关的知识,希望对你有一定的参考价值。

PASSWORDS = {‘email‘:‘asdc3c145daf54gsfdg1re‘,
‘blog‘: ‘23dfsdgfdssfdv‘,
‘luggage‘: ‘asdasdf1243weaf4‘}
import sys,pyperclip
if len(sys.argv) < 2:
print(‘Usage: python testforflask.py [account] - copy account password‘)
sys.exit()

account = sys.argv[1]

if account in PASSWORDS:
pyperclip.copy(PASSWORDS[account])
else:
print(‘no‘)

写的乱了一些
代码是模拟用户将账号和密码统一存放到一个字典中
可以通过命令行的方式来获取密码
即通过
python test.py [account] 来获取,[account]为要查获的账号

































以上是关于读书笔记Python的主要内容,如果未能解决你的问题,请参考以下文章

《可爱的Python》读书笔记

《可爱的Python》读书笔记

《可爱的Python》读书笔记

《可爱的Python》读书笔记

《可爱的Python》读书笔记

python编程:从入门到实践读书笔记