题解 | #简单密码#
简单密码
https://www.nowcoder.com/practice/7960b5038a2142a18e27e4c733855dac
str = input() res = [] for i in str: if i.isdigit(): res.append(i) elif i.isupper() and i != 'Z': res.append(chr(ord(i.lower()) + 1)) elif i == 'Z': res.append('a') else: if i in 'abc': res.append('2') elif i in 'def': res.append('3') elif i in 'ghi': res.append('4') elif i in 'jkl': res.append('5') elif i in 'mno': res.append('6') elif i in 'pqrs': res.append('7') elif i in 'tuv': res.append('8') elif i in 'wxyz': res.append('9') elif i == '0': res.append('0') elif i == '1': res.append('1') else: res.append(i) print("".join(res))#晒一晒我的offer#