본문 바로가기
IT,SW,Data,Cloud,코딩/Python

2023년 5월 12일 파이썬 공부

by 착실하게 2023. 5. 12.
반응형
from datetime import datetime
from datetime import timedelta

today=datetime.today()
now=datetime.now()

print(today)
print(now)

print(today.year)
print(today.month)
print(today.day)
print(today.hour)
print(today.minute)
print(today.second)
print(today.microsecond)

print("today is %d 월 %d 일 " % (today.month, today.day) )


print("전체 20칸을 차지하는 문자열%20s(공백을 앞에 붙인다.)" %today.year )
print("전체 10칸을 차지하는 숫자%-10d(공백을 뒤에 붙인다.)" %today.year )
print("부동소수점의 소수점 아래 5자리까지 표시 %.5f" %today.year )

print("{2}의 {0} 점수는 {1}점입니다. {1}점! {1}점!".format("수학", 100, "철수"))

print("{a}점수: {x}점, {b}점수: {y}점".format(a="영어", b="수학", x=100, y=90))

x = [10, 11, 12]
print("리스트의 첫번째 원소={0[0]}".format(x))

y = {"a": 10, "b": 11, "c": 12}
print("사전의 a키 값={0[a]}".format(y))

name = "홍길동"
age = 32
print(f"{name}의 나이는 {age}살이다.")

print(now.weekday()  )
# {0:월, 1:화, 2:수, 3:목, 4:금, 5:토, 6:일}

print(now.strftime("%H시 %M분 %S초"))
print(now.strftime("%Y-%m-%d")) #%M과 %m은 다르다. %D와 %d도 다르다. 


print( ( datetime.utcnow()+timedelta(hours=9) ).strftime("%Y-%m-%d") )
반응형

댓글