python 의 int()함 수 는 어떻게 사용 합 니까?
int(x, [base])
기능:함수 의 역할 은 숫자 나 base 형식의 문자열 을 정수 로 바 꾸 는 것 입 니 다.
함수 원형:
int(x=0)
int(x,base=10),base 부족 값 은 10 입 니 다.즉,base 의 값 을 지정 하지 않 을 때 함 수 는 x 를 10 진법 으로 처리 합 니 다.
Python 버 전 적용:
Python2.x
Python3.x
주의:
1.x 는 숫자 나 문자열 일 수 있 지만 base 가 할당 되면 x 는 문자열 일 수 밖 에 없습니다.
2.x 는 문자열 일 때 base 형식 이 어야 합 니 다.즉,x 가 숫자 가 될 때 base 진법 으로 표시 해 야 합 니 다.
Python 영문 문서 설명:
class int(x=0)
class int(x, base=10)
Return an integer object constructed from a number or string x, or return 0 if no arguments are given. If x is a number, return x.__int__(). For floating point numbers, this truncates towards zero.
If x is not a number or if base is given, then x must be a string, bytes, or bytearray instance representing an integer literal in radix base. Optionally, the literal can be preceded by + or - (with no space in between) and surrounded by whitespace. A base-n literal consists of the digits 0 to n-1, with a to z (or A to Z) having values 10 to 35. The default base is 10. The allowed values are 0 and 2C36. Base-2, -8, and -16 literals can be optionally prefixed with 0b/0B, 0o/0O, or 0x/0X, as with integer literals in code. Base 0 means to interpret exactly as a code literal, so that the actual base is 2, 8, 10, or 16, and so that int('010', 0) is not legal, while int('010') is, as well as int('010', 8).
The integer type is described in Numeric Types ― int, float, complex.
Changed in version 3.4: If base is not an instance of int and the base object has a base.__index__ method, that method is called to obtain an integer for the base. Previous versions used base.__int__ instead of base.__index__.
Changed in version 3.6: Grouping digits with underscores as in code literals is allowed.
코드 인 스 턴 스:
1.x 는 숫자의 경우:
int(3.14) # 3
int(2e2) # 200
int(100, 2) # ,base
2.x 는 문자열 의 경우:
int('23', 16) # 35
int('Pythontab', 8) # ,Pythontab 8
3.base 의 수치 범 위 는 2~36 이 고 모든 영문 자모(대소 문자 구분 없 음)를 포함 합 니 다.16 진법 에서 F 는 15 를 표시 합 니 다.그러면 G 는 20 진법 에서 16 을 표시 합 니 다.이에 따라...Z 는 36 진법 에서 35 를 표시 합 니 다.
int('FZ', 16) # ,FZ
int('FZ', 36) # 575
4.문자열 0x 는 16 진법 에 나타 날 수 있 고 16 진법 의 기호 로 볼 수 있 으 며 같은 이치 의 0b 는 2 진법 에 나타 날 수 있 으 며 그 밖 에 숫자 0 과 자모 x 로 볼 수 있다.
int('0x10', 16) # 16,0x
int('0x10', 17) # ,'0x10' x x
int('0x10', 36) # 42804,36 x
총결산위 에서 말 한 것 은 소 편 이 python 의 int()함 수 를 소개 하 는 것 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 면 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.