import string
numbers = []
unencrypted_pass = input(str("Place your password here:"))
encrypt_1 = unencrypted_pass [::-1]
alphabet_up = string.ascii_uppercase
alphabet_low = string.ascii_lowercase
for letter in encrypt_1:
number = ord(letter) - 96
numbers.append(number)
print(numbers)
I'm trying to remove the commas between the numbers in the variable "numbers" like this: [20, 1, 5, 8] --> 20158.