Python Coding Test Tip1 [Python] Coding Test Tip N개 Array 생성 → 다이나믹 프로그래밍이나 개수 제한 문제 풀 경우 n = 100 memo = [0] * n 2진수, 8진수, 10진수, 16진수 문제 'a'를 10진수로 변환 해주는 예제 i = 'a' print(int(i, 16)) → 10 10진수 8을 8진수로 변환 해주는 예제 print(oct(8)) → 0o10 10진수를 16진수로 formatting print('{0:X}'.format(11)) → B Formatting 8을 입력하면 08로 나오게 하는 포메팅 print('{0:02d}'.format(8)) →08 소수점 2번째 자리까지 나오는 포메팅 print('{0:.2f}'.format(9)) → 9.00 Split해서 list에 넣기 i = input() # i = '7 4 2.. 2020. 12. 9. 이전 1 다음