Contact: aviboots(AT)netvision.net.il
39,955 questions
51,897 answers
573 users
import string alphabet_lowercase = string.ascii_lowercase print(alphabet_lowercase) alphabet_uppercase = string.ascii_uppercase print(alphabet_uppercase) ''' run: abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ '''