题解 | #密码游戏#
密码游戏
https://www.nowcoder.com/practice/36641ab168664384aff798ba7ce34bc1
a = input() str1 = str() for i in range(len(a)): str1 += str((int(a[i])+3)%9) print(str1[2],str1[3],str1[0],str1[1],sep='')
密码游戏
https://www.nowcoder.com/practice/36641ab168664384aff798ba7ce34bc1
a = input() str1 = str() for i in range(len(a)): str1 += str((int(a[i])+3)%9) print(str1[2],str1[3],str1[0],str1[1],sep='')
相关推荐