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 characters
π Morning 75 commits βββββββββββββββββββββ 13.2% | |
π Daytime 314 commits βββββββββββββββββββββ 55.2% | |
π Evening 170 commits βββββββββββββββββββββ 29.9% | |
π Night 10 commits βββββββββββββββββββββ 1.8% |
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 characters
import sys | |
from itertools import zip_longest | |
""" | |
>> int νμ μ΅λκ° μμ보기 | |
t1 = sys.maxsize | |
t2 = sys.maxsize + 1 | |
print(f"t1: {t1}, type: {type(t1)}") | |
print(f"t2: {t2}, type: {type(t2)}") |