nathan_H

python - 진수 변환, ascll code 변환 본문

Programming Laguage/Python

python - 진수 변환, ascll code 변환

nathan_H 2019. 4. 18. 23:30

 

if __name__ == "__main__":
    nums = 12345
    print(bin(nums))  # 10진수 -> 2진수 (0b으로 시작)

    print(oct(nums))  # 10진수 -> 8진수 (0o으로 시작)

    print(hex(nums))  # 10진수 -> 16진수 (0x으로 시작)

    # ascll code
    print(ord("z"))  # ascll -> 숫자

    print(hex(ord("z")))  # ascll -> 8진수

    print(chr(90))  # 숫자 -> ascll

    print(chr(0x5A))  # 16진수 -> ascll

'Programming Laguage > Python' 카테고리의 다른 글

python - class method type.  (0) 2019.04.30
python - function 과 method  (0) 2019.04.30
python - namespace  (0) 2019.04.26
Decorator  (0) 2019.04.26
Closure.  (0) 2019.04.26
Comments