1 #hint:可一把梭
1 import random
1 key = random.randint(0, 25)
1 alphabet = 'abcdefghijklmnopqrstuvwxyz'
1 shifted = alphabet[key:] + alphabet[:key]
1 dictionary = dict(zip(alphabet, shifted))
1 print(''.join([
1 dictionary[c]
1 if c in dictionary
1 else c
1 for c in input()
1 ]))
1 #egddagzp_ftue_rxms_iuft_rxms_radymf
你print是想干嘛