Created
March 29, 2022 08:48
-
-
Save chwnam/7a59cce4a91ffddb11700314ce7b1fa4 to your computer and use it in GitHub Desktop.
Revisions
-
chwnam created this gist
Mar 29, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ #!/usr/bin/env python3 k1 = 'ABCDEag==' k2 = 'ABCDEag==' print('Length of k1:', len(k1)) print('Length of k2:', len(k2)) print('--- k1:') for c in k1: print(c, ord(c)) print('') print('--- k2:') for c in k2: print(c, ord(c))