Created
March 29, 2022 08:48
-
-
Save chwnam/7a59cce4a91ffddb11700314ce7b1fa4 to your computer and use it in GitHub Desktop.
화이트스페이스의 함정
This file contains 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 characters
#!/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)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
8203의 정체