Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

STEP 8. 일반 수학 1 #9

Open
8 tasks done
letsjo opened this issue Mar 31, 2023 · 0 comments
Open
8 tasks done

STEP 8. 일반 수학 1 #9

letsjo opened this issue Mar 31, 2023 · 0 comments
Assignees
Labels
STEP 단계

Comments

@letsjo
Copy link
Owner

letsjo commented Mar 31, 2023

단계 설명

수학적 사고력을 길러 봅시다.

문제 / 코드보기

새로 알게된 점

  • 진법 변환 (N진수 -> 10진수)

     print(int('0b11001', 2)) 	# 25
     print(int('0o31', 8))		# 25
     print(int('0x19', 16))		# 25
  • 진법 변환 (10진수 -> N진수)
    함수를 따로 만들어 줘야한다.

     def solution(n, q):
         rev_base = ''
     
         while n > 0:
             n, mod = divmod(n, q)
             rev_base += str(mod)
     
         return rev_base[::-1] 
         
     print(solution(45, 3))
  • 진법 변환(10진수 -> 2, 8, 16진수)

     print(bin(11)[2:]) # 1011 / 2진수
     print(oct(11)[2:]) # 13 / 8진수
     print(hex(11)[2:]) # b / 16진수
@letsjo letsjo added the STEP 단계 label Mar 31, 2023
@letsjo letsjo self-assigned this Mar 31, 2023
letsjo added a commit that referenced this issue Mar 31, 2023
letsjo added a commit that referenced this issue Mar 31, 2023
letsjo added a commit that referenced this issue Mar 31, 2023
letsjo added a commit that referenced this issue Mar 31, 2023
letsjo added a commit that referenced this issue Mar 31, 2023
letsjo added a commit that referenced this issue Mar 31, 2023
letsjo added a commit that referenced this issue Mar 31, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
STEP 단계
Projects
None yet
Development

No branches or pull requests

1 participant