Skip to content

Commit

Permalink
Capital letters
Browse files Browse the repository at this point in the history
  • Loading branch information
Angela-zw authored and claesgill committed Oct 19, 2023
1 parent 1e1faf6 commit 363766f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
reversed_alphabet = alphabet[::-1]
sorted_alphabet = alphabet.sort()
numbers_alphabet = [*(chr(ord("0") + i) for i in range(10)), *alphabet] # concatenate numbers and alphabets into 1 array (0-9,a-z)
numbers42_alphabet = [(int(i) * 42) for i in numbers_alphabet[0:9]] + alphabet
numbers42_alphabet = [(int(i) * 42) for i in numbers_alphabet[0:9]] + alphabet
alphabet_capatalized = [*(chr(ord("A") + i) for i in range(26))]

0 comments on commit 363766f

Please sign in to comment.