Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

파이썬의 string.octdigits

<시간/>

이 튜토리얼에서는 string.octdigits에 대해 알아볼 것입니다. 문자열.

문자열 octdigits 문자열에 미리 정의되어 있습니다. Python3 모듈 . 문자열에서 간단히 액세스하여 프로그램에서 원할 때마다 8진수를 사용할 수 있습니다. 모듈.

# importing the string module
import string
# printing the octal digits string
print(string.octdigits)

출력

위의 코드를 실행하면 다음과 같은 결과를 얻을 수 있습니다.

01234567

string.octdigits 문자열입니다. 다음 프로그램을 실행하면 됩니다.

# importing the string module
import string
# printing the octal digits string
print(type(string.octdigits))

출력

위의 코드를 실행하면 다음과 같은 결과를 얻을 수 있습니다.

<class 'str'>

결론

튜토리얼과 관련하여 궁금한 점이 있으면 댓글 섹션에 언급하세요.