I want to create an empty dict from A to Z without J and Y.
my_dict = {x: [0] * 15 for x in string.ascii_uppercase}
With this, I create an empty dict with all alphabets but I want a list without J and Y. How I can make this.
Thanks a lot for any help :)