라벨이 constant인 게시물 표시

파이썬[Python]: datetime - resolution 상수

datetime 모듈 - datetime 클래스 - resolution 상수(constant) /// 설명 객체를 비교할 수 있는 가장 작은 값입니다.(1 microseconds) ※ 형식 datetime.resolution reference https://docs.python.org/3/library/datetime.html#module-datetime /// 예제 1 2 3 4 5 6 7 8 9 import  datetime   test_resolution  =  datetime.datetime.resolution print (test_resolution)   # 0:00:00.000001   # related to this method ------------------------------ print (datetime.timedelta(microseconds = 1 )) # 0:00:00.000001   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: datetime - max 상수 (datetime)

datetime 모듈 - datetime 클래스 - max 상수(constant) /// 설명 달력이 표현할 수 있는 가장 늦은 시기입니다. ※ 형식 datetime.max reference https://docs.python.org/3/library/datetime.html#module-datetime /// 예제 1 2 3 4 5 6 7 8 9 import  datetime   test_max  =  datetime.datetime.max print (test_max)   # 9999-12-31 23:59:59.999999   # related to this method ------------------------------ print (datetime.datetime(datetime.MAXYEAR,  12 ,  31 ,  23 ,  59 ,  59 ,  999999 , tzinfo = None )) # 9999-12-31 23:59:59.999999   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: datetime - min 상수

datetime 모듈 - datetime 클래스 - min 상수(constant) /// 설명 달력이 표현할 수 있는 가장 이른 시기입니다. ※ 형식 datetime.min reference https://docs.python.org/3/library/datetime.html#module-datetime /// 예제 1 2 3 4 5 6 7 8 import  datetime   test_min  =  datetime.datetime.min print (test_min)   # 0001-01-01 00:00:00   # related to this method ------------------------------ print (datetime.datetime(datetime.MINYEAR,  1 ,  1 , tzinfo = None ))   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: 내장함수 - None 상수

내장함수 - None 상수(constant) /// 설명 값이 없음을 나타내는 객체로 기본값을 사용하는 인자 같은곳에 빈번하게 사용됩니다. 할당을 할 수 없으며 할당할 경우 오류가 납니다. NoneType 타입의 유일한 인스턴스입니다. ※ 형식 None reference https://docs.python.org/release/3.10.0/library/constants.html /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 test  =   None print (test)   # None     def  test_none():      return   None     test_none()   # print (test_none())   # None     def  test_none(a = None ):      if  a  ! =   None :          print (a)      else :          print ( 'None' )     test_none()   # None test_none( 1 )   # 1   cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: 내장함수 - False 상수

내장함수 - False 상수(constant) /// 설명 bool 타입의 false 값으로, 할당을 할 수 없으며 할당할 경우 오류가 납니다. ※ 형식 False reference https://docs.python.org/release/3.10.0/library/constants.html /// 예제 1 2 3 4 5 6 7 8 test_bool  =   False   if  test_bool  = =   True :      print ( 'test_bool is True' ) else :      print ( 'test_bool is False' )   # test_bool is False cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: 내장함수 - True 상수

내장함수 - True 상수(constant) /// 설명 bool 타입의 true 값으로, 할당을 할 수 없으며 할당할 경우 오류가 납니다. ※ 형식 True reference https://docs.python.org/release/3.10.0/library/constants.html /// 예제 1 2 3 4 5 6 7 8 test_bool  =   True   if  test_bool  = =   True :      print ( 'test_bool is True' ) else :      print ( 'test_bool is False' )   # test_bool is True cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: datetime - utc 상수

datetime 모듈 - timezone 클래스 - utc 상수(constant) /// 설명 UTC timezone을 반환합니다. ※ 형식 timezone.utc reference https://docs.python.org/3/library/datetime.html#module-datetime /// 예제 1 2 3 4 5 6 7 8 9 10 11 import  datetime   # Korean Standard Time: KST = UTC + 9 test_timezone  =  datetime.timezone(datetime.timedelta(hours = 9 ),  'KST' ) print (test_timezone)   # KST   test_utc  =  test_timezone.utc print (test_utc)   # UTC   print (datetime.timezone(datetime.timedelta( 0 )))   # UTC   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: sys - hash_info 상수

sys 모듈 - hash_info 상수(constatn) /// 설명 numeric 해시를 구현하기 위한 속성들을 반환합니다. named 튜플 ※ 형식 sys.hash_info /// 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 import  sys   # built-in: hash() print (sys.hash_info) # sys.hash_info(width=64, modulus=2305843009213693951, inf=314159, nan=0, # imag=1000003, algorithm='siphash24', hash_bits=64, seed_bits=128, cutoff=0)   # width = bits used for hash values (64 bits with 128 seed_bits) # modulus = a mod P, P is a prime # inf = hash value returned for a positive infinity # non = ? # imag = multiplier used for the imaginary part of a complex number # algorithm = name of the algorithm # hash_bits = output #...

파이썬[Python]: datetime - resolution 상수

datetime 모듈 - date 클래스 - resolution 상수(constant) /// 설명 객체를 비교할 수 있는 가장 작은 값입니다.(1 day) ※ 형식 date.resolution /// 예제 1 2 3 4 5 6 7 import  datetime   test_resolution  =  datetime.date.resolution print (test_resolution)   # 1 day, 0:00:00   # related to this method ------------------------------ print (datetime.timedelta(days = 1 ))   # 1 day, 0:00:00 cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: datetime - max 상수 (date)

datetime 모듈 - date 클래스 - max 상수(constant) /// 설명 달력이 표현할 수 있는 가장 늦은 시기입니다. ※ 형식 date.max /// 예제 1 2 3 4 5 6 7 8 import  datetime   test_max  =  datetime.date.max print (test_max)   # 9999-12-31   # related to this method ------------------------------ print (datetime.date(datetime.MAXYEAR,  12 ,  31 ))   # 9999-12-31   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: datetime - min 상수

datetime 모듈 - date 클래스 - min 상수(constant) /// 설명 달력이 표현할 수 있는 가장 이른 시기입니다. ※ 형식 date.min reference https://docs.python.org/3/library/datetime.html#module-datetime /// 예제 1 2 3 4 5 6 7 8 import  datetime   test_min  =  datetime.date.min print (test_min)   # 0001-01-01   # related to this method ------------------------------ print (datetime.date(datetime.MINYEAR,  1 ,  1 ))   # 0001-01-01   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: datetime - resolution 상수

datetime 모듈 - timedelta 클래스 - resolution 상수(constant) /// 설명 timedelta 객체를 서로 비교할 수 있는 가장 작은 단위(microseconds) ※ 형식 timedelta.resolution /// 예제 1 2 3 4 5 import  datetime   # microseconds print (datetime.timedelta.resolution)   # 0:00:00.000001   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: datetime - max 상수 (datetime)

datetime 모듈 - timedelta 클래스 - max 상수(constant) /// 설명 imedelta 객체가 표현할 수 있는 가장 큰 단위 ※ 형식 datetime.max /// 예제 1 2 3 4 import  datetime   print (datetime.timedelta.max)   # 999999999 days, 23:59:59.999999   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: datetime - min 상수

datetime 모듈 - timedelta 클래스 - min 상수(constant) /// 설명 timedelta 객체가 표현할 수 있는 가장 작은 단위 ※ 형식 timedelta.min /// 예제 1 2 3 4 import  datetime   print (datetime.timedelta.min)   # -999999999 days, 0:00:00   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: datetime - MAXYEAR 상수

datetime 모듈 - MAXYEAR 상수(constant) /// 설명 date 나 datetime 객체에서 허용하는 최대단위 년수 ※ 형식 datetime.MAXYEAR /// 예제 1 2 3 4 import  datetime   print (datetime.MAXYEAR)   # 9999   Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –

파이썬[Python]: datetime - MINYEAR 상수

datetime 모듈 - MINYEAR 상수(constant) /// 설명 date 나 datetime 객체에서 허용하는 최소단위 년수 ※ 형식 datetime.MINYEAR /// 예제 1 2 3 4 import  datetime   print (datetime.MINYEAR)   # 1   cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –