import numpy as np
Original_word = str(input("What is the phrase you want to encrypt:"))
Y=int(input("what number do you want the letter to move forward:"))
n = [ord(x) for x in Original_word]
real_list = np.array(n)
Z=real_list+Y
print(chr(ord('@')+Z))
this is my python code and it shows TypeError: only integer scalar arrays can be converted to a scalar index. I have no idea how to solve this. Can anyone pls help me and pls don't show me this page Python TypeError : only integer scalar arrays can be converted to a scalar index as i already read it and have no idea how to implement it