word = ('abc', 'dwf', 'gti', 'jql', 'mon', 'pkr', 'shu', 'vex', 'yb')
time = 0
temp_button = ''
def inputTime(a):
"""计算非同一按钮连续输入的单次输入时间"""
global time
for button in word:
if a in button:
time += button.index(a) + 1
return time
continue
def isSameButton(a, b):
"""判断是否为同一按钮连续输入"""
global temp_button
for button in word:
if a in button:
if b in button:
temp_button = button
return True
return False
continue
password = str(input('请输入密码'))
# 默认输入的是小写字母
for i in range(len(password)):
if i == 0:
inputTime(password[i])
else:
if isSameButton(password[i-1], password[i]):
time = time + 3 + temp_button.index(password[i])
else:
inputTime(password[i])
print(time)
感谢分享
这薪资已经是低级别的了。。。
六月份的时候了
简历被贵公司 pass 了
今年行情不好,没被裁员就不错了,实在不满意那就跳槽吧,这是最快的涨薪方式,当然要有匹配的能力。如果觉得自己的能力不足以找理想薪资的岗位,那就努力提升能力再跳槽,到时候就会觉得现在纠结涨薪实在是没必要。如果是大佬,请忽略前面的话...
顶顶
学习了
感谢分享
感谢分享