라벨이 variable인 게시물 표시

파이썬[Python]: keyword - softkwlist 변수

keyword 모듈 - softkwlist 변수(variable) /// 설명 파이썬 인터프리터에서 사용하는 모든 소프트 키워드들을 표현합니다. ※ 형식 keyword.softkwlist reference https://docs.python.org/3/library/keyword.html#module-keyword /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 import  keyword   print (keyword.softkwlist) # []   keyword.softkwlist  =   'test' print (keyword.softkwlist)   # test   # Soft Keywords # related identifiers: match, case and _ # https://docs.python.org/3/reference/lexical_analysis.html#soft-keywords   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: keyword - kwlist 변수

keyword 모듈 - kwlist 변수(variable) /// 설명 파이썬 인터프리터에서 사용하는 모든 키워드들을 표현합니다. ※ 형식 keyword.kwlist reference https://docs.python.org/3/library/keyword.html#module-keyword /// 예제 1 2 3 4 5 6 7 8 import  keyword   print (keyword.kwlist) # ['False', 'None', 'True', '__peg_parser__', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']   keyword.kwlist  =   'test' print (keyword.kwlist)   # test   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬...

파이썬[Python]: 내장함수 - __mro__ 변수

파이썬(Phthon): 내장함수 - __mro__ 변수(variable) /// 설명 상위 클래스의 메서드를 탐색하는데 사용되어집니다. 상위 클래스에 같은 이름을 가진 메서드가 있을 경우 우선하여 시행하는 순서를 보여줍니다. ex) (&ltclass '__main__.D'>, &ltclass '__main__.B'>, &ltclass '__main__.A'>, &ltclass 'object'>) D -> B -> A -> object ※ 형식 __mro__ reference https://docs.python.org/3/library/stdtypes.html#class.__mro__ /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 class  A(object):      def  a( self ):          print ( 'test A' )     print (A.__mro__)   # (<class '__main__.A'>, <class 'object'>)     class  B(object):      def  a( self ):          print ( 'test B' )     print (B.__mro__)   # (<class '__main__.B'>, <class 'object'>)     class  C...

파이썬[Python]: 내장함수 - __bases__ 변수

파이썬(Phthon): 내장함수 - __bases__ 변수(variable) /// 설명 상위 클래스들을 포함하는 튜플을 반환합니다. ※ 형식 __bases__ reference https://docs.python.org/3/reference/datamodel.html /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 import  array   print (array.array.__bases__)   # (<class 'object'>,)     class  A(object):      pass     print (A.__bases__)   # (<class 'object'>,)   class  ASub(A, array.array):      pass     print (ASub.__bases__)   # (<class '__main__.A'>, <class 'array.array'>)   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: fractions - denominator 변수

fractions 모듈 - denominator 변수(variable) /// 설명 분수를 약분 했을 경우 나올 수 있는 가장 작은 수(분자) ※ 형식 fractions.Fraction().denominator reference https://docs.python.org/3/library/fractions.html#module-fractions /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 import  fractions   print (fractions.Fraction( 1 ,  3 ).denominator)   # 3 print (fractions.Fraction( 2 ,  3 ).denominator)   # 3 print (fractions.Fraction( 3 ,  3 ).denominator)   # 1 print (fractions.Fraction( 4 ,  3 ).denominator)   # 3 print (fractions.Fraction( 5 ,  3 ).denominator)   # 3 print (fractions.Fraction( 6 ,  3 ).denominator)   # 1 print (fractions.Fraction( 7 ,  3 ).denominator)   # 3 print (fractions.Fraction( 8 ,  3 ).denominator)   # 3 print (fractions.Fraction( 9 ,  3 ).denominator)   # 1   #     ...

파이썬[Python]: fractions - numerator 변수

fractions 모듈 - numerator 변수(variable) /// 설명 분수를 약분 했을 경우 나올 수 있는 가장 작은 수(분모) ※ 형식 fractions.Fraction().numerator reference https://docs.python.org/3/library/fractions.html#module-fractions /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 import  fractions   print (fractions.Fraction( 1 ,  3 ).numerator)   # 1 print (fractions.Fraction( 2 ,  3 ).numerator)   # 2 print (fractions.Fraction( 3 ,  3 ).numerator)   # 1 print (fractions.Fraction( 4 ,  3 ).numerator)   # 4 print (fractions.Fraction( 5 ,  3 ).numerator)   # 5 print (fractions.Fraction( 6 ,  3 ).numerator)   # 2 print (fractions.Fraction( 7 ,  3 ).numerator)   # 7 print (fractions.Fraction( 8 ,  3 ).numerator)   # 8 print (fractions.Fraction( 9 ,  3 ).numerator)   # 3   #         ...

파이썬[Python]: sys - platlibdir 변수

sys 모듈 - platlibdir 변수(variable) /// 설명 플래폼 종속 라이브러리 디렉토리의 이름입니다. 표준 라이브러리와 확장 모듈을 설치하기 위한 경로를 지칭합니다. ※ 형식 sys.platlibdir /// 예제 1 2 3 4 5 6 7 import  sys   print (sys.platlibdir)   # lib   #                                              _____ # 'C:\\Users\\psych\\anaconda3\\envs\\Practice\\lib\\os.py'>   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: sys - platform 변수

sys 모듈 - platform 변수(variable) /// 설명 플래폼을 나타내는 지시자입니다. ※ 형식 sys.platform /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 import  sys   print (sys.platform)   # win32 print (sys.platform.startswith( 'linux' ))   # False   # recommended if  sys.platform.startswith( 'win32' ):      print ( 'win32' ) elif  sys.platform.startswith( 'linux' ):      print ( 'linux' ) # elif ... # elif ...   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: sys - path_importer_cache 변수

sys 모듈 - path_importer_cache 변수(variable) /// 설명 파인더 객체를 위한 캐쉬로서의 디렉토리입니다. 딕셔너리에서 'key'는 sys.path_hooks 에 의해 전달되어진 경로이고, 'value'는 발견된 파인더 입니다. ※ 형식 sys.path_importer_cache /// 예제 1 2 3 4 5 import  sys   print (sys.path_importer_cache) # {'D:\\......\\Computer_Program\\Py\\Practice': FileFinder('D:\\......\\Computer_Program\\Py\\Practice'), 'C:\\Users\\psych\\anaconda3\\envs\\Practice\\python39.zip': None, ......   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: sys - path_hooks 변수

sys 모듈 - path_hooks 변수(variable) /// 설명 파인더(finder)를 생성하기 위해 경로를 인자로 갖을 수 있는 콜러블의 리스트를 반환합니다. ※ 형식 sys.path_hooks /// 예제 1 2 3 4 5 import  sys   print (sys.path_hooks) # [<class 'zipimport.zipimporter'>, <function FileFinder.path_hook.<locals>.path_hook_for_FileFinder at 0x000002934E4F1D30>]   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: sys - argv 변수

sys 모듈 - argv 변수(variable) /// 설명 모듈과 관련된 특정 경로들의 문자열 리스트를 반환합니다. 이 값은 환경변수 PYTHONPATH 에 의해 초기화됩니다. ※ 형식 sys.argv /// 예제 1 2 3 4 5 import  sys   print (sys.path) # ['D:\\......\\Computer_Program\\Py\\Practice', 'D:\\......\\Computer_Program\\Py\\Practice', 'C:\\Users\\psych\\anaconda3\\envs\\Practice\\python39.zip', ......   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: sys - argv 변수

sys 모듈 - argv 변수(variable) /// 설명 파이썬 스크립트에 의해 전달되어진 명령어 인터페이스(command line)의 인자들을 출력합니다. ※ 형식 sys.argv /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 import  sys   # try using Terminal # # python filename.py  arg1  arg2  ...... #         argv[0]   argv[1] argv[2] ...... # # command was executed using the -c command line option # python filename.py  arg1  arg2  ...... #                   argv[0] argv[1]  ......   print (sys.argv) # PS D:\......\Computer_Program\Py\Practice> python main.py -s -v # ['main.py', '-s', '-v']   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리...

파이썬[Python]: sys - modules 변수

sys 모듈 - modules 변수(variable) /// 설명 모듈 이름과 현재 적재(loaded)되어 있는 모듈이 표현되어 있는 딕셔너리를 반환합니다. 딕셔너리를 치환하는 것은 파이썬의 오류를 야기할 수 있습니다. 대신, sys.modules.copy() 나 tuple(sys.modules)를 사용하시기 바랍니다. ※ 형식 sys.modules /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 import  sys from  pprint  import  pprint   pprint(sys.modules.copy())   # {'__main__': <module '__main__' from 'D:\\......\\Computer_Program\\Py\\Practice\\main.py'>, #  '_abc': <module '_abc' (built-in)>, #  '_bootlocale': <module '_bootlocale' from 'C:\\Users\\psych\\anaconda3\\envs\\Practice\\lib\\_bootlocale.py'>, #  '_codecs': <module '_codecs' (built-in)>, #  '_codecs_kr':...

파이썬[Python]: sys - maxunicode 변수

sys 모듈 - maxunicode 변수(variable) /// 설명 가장 큰 유니코드의 코드포인트를 반환합니다. ※ 형식 sys.maxunicode /// 예제 1 2 3 4 5 6 7 import  sys   print (sys.maxunicode)   # 1114111 print ( '{:0X}' . format (sys.maxunicode))   # 10FFFF   # U+0000 ~ U+10FFFF   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: 내장함수 - __self__ 변수

내장함수 - __self__ 변수(variable) /// 설명 함수(메서드)가 연결되어 있는 인스턴스를 표현하거나, None을 반환합니다. A Variable in Python Standard. ※ 형식 __self__ reference https://docs.python.org/3/library/inspect.html https://docs.python.org/3/reference/datamodel.html /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 from  decimal  import  Decimal from  array  import  array from  hashlib  import  new   test  =  new( 'sha1' ) print (test.update.__self__)   # <sha1 _hashlib.HASH object @ 0x00000184A84268D0> print (test)   # <sha1 _hashlib.HASH object @ 0x00000184A84268D0> print (new( 'sha1' ))   # <sha1 _hashlib.HASH object @ 0x00000184A86E0B90>   test  =  Decimal( 1 ) print (test.adjusted.__self__)   # 1 print (test)   # 1 print (Decimal( 1 ))   # 1  ...

파이썬[Python]: 내장함수 - __module__ 변수

내장함수 - __module__ 변수(variable) /// 설명 클래스와 함수(메서드)가 포함되어 있는 모듈의 이름을 표현합니다. A Variable in Python Standard. (Built-in 은 제공하지 않습니다.) ※ 형식 __module__ reference https://docs.python.org/3/library/inspect.html /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 import  array   print ( int .__module__)   # builtins print (breakpoint.__module__)   # builtins # print(array.array.index.__module__)  # Error: method_descriptor     class  MyClass:      def  my_method( self ):          pass     print (MyClass.__module__)   # __main__ print (MyClass.my_method.__module__)   # __main__     def  my_function():      pass     print (my_function.__module__)   # __main__   # int...

파이썬[Python]: 내장함수 - __qualname__ 변수

내장함수 - __qualname__ 변수(variable) /// 설명 클래스, 함수(메서드)의 이름을 표현합니다. 함수(메서드)일 경우 클래스의 이름을 같이 명시합니다. A Variable in Python Standard ※ 형식 __qualname__ reference https://docs.python.org/3/library/inspect.html https://www.python.org/dev/peps/pep-3155/ /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 import  sys   print ( int .__name__)   # int print ( int .__qualname__)   # int   print (breakpoint.__name__)   # breakpoint print (breakpoint.__qualname__)   # breakpoint   print ( int .bit_length.__name__)   # bit_length print ( int .bit_length.__qualname__)   # int.bit_length     class  MyClass:      print ( 'in class: ' , __name__)   # in class:  __main__      print ( 'in class:...