《英雄无敌》-软件上锁——文件
welcome = 'welcome to heroes world'
i = 0
while True:
username = input('input username:')
password = input('input password:')
i += 1
if username == 'tao' and password == '123':
pass
else:
if i == 3:
open('lock.log','w').write(username)
print('locked the username %s' % username)
break
continue
print(welcome)
在本代码部分,关键在于理解整体的思路,以及注重以下文件操作部分。