Python 3 AttributeError: Module 'sys' Has No Attribute 'argv'

Python 3 AttributeError: Module 'sys' Has No Attribute 'argv'

因为我正在看书中的一个例子:

#! python3
# pw.py password locker program

PASSWORDS = {'email': 'F7min18DDuvMJuxESSLHFhTxFtjvB6',
             'blog': 'VmALQyKAxiVH5G8v01if1MLZF3sdt',
             'luggage': '12345'}

import sys, pyperclip
if len(sys.agrv) < 2:
    print('Usage: python3 pw.py [account] - copy account password')
    sys.exit()

account = sys.argv[1]

if account in PASSWORDS:
    pyperclip.copy(PASSWORDS[account])
    print('Password for ' + account + 'copied to clipboard.')
else:
    print('There is no account named ' + account)

运行 这个程序 returns 一个属性错误:

kingvon@KingVon:~/Desktop/py$ python3 pw.py email
Traceback (most recent call last):
  File "/home/kingvon/Desktop/py/pw.py", line 9, in <module>
    if len(sys.agrv) < 2:
AttributeError: module 'sys' has no attribute 'agrv'

这是为什么?我觉得这是一个兼容性问题,因为本书使用 Windows。我正在使用最新的 Kali Linux.

你打错了。 而不是这一行

if len(sys.agrv) < 2:

写下这一行:

if len(sys.argv) < 2: