I want to create a Vigenere style encryption in python, but with two keys. The first key should determinate the substitution by changing the alphabets in the second key to encrypt words and sentences with this new substitution. The first key should consist of numbers and the second one of letters. Is such a project even possible in Python without having to hardcode everyone of the 26 possible alphabets in lists and then changing them?
Ps: I know the result will not be safe, I want to do this as a practice in programming.