利用python編程對輸入的明文進行加密處理

請編程對輸入的明文進行加密處理 str=input() li=list(str) for i in range(len(li)): li[i]=chr(ord(li[i])+5) print(’’.join(li))
相關文章
相關標籤/搜索