Python Level 2 Ch.1

phillip yoonΒ·2021λ…„ 6μ›” 27일
0

πŸ“Œ Chapter 1


πŸ’‘ Code

import pendulum
from datetime import datetime

pst = pendulum.timezone('America/Los_Angeles')
ist = pendulum.timezone('Asia/Seoul')

print(type(pst))

# νƒ€μž„μ‘΄ μ‹œκ°„ 좜λ ₯

print('Current Date Time in PST =', datetime.now(pst))
print('Current Date Time in IST =', datetime.now(ist))

# νƒ€μž… 확인
print(type(ist))
profile
세상이 더 λ‚˜μ•„μ§€κΈ°λ₯Ό λ°”λΌλŠ” 마음으둜 κ°œλ°œμ— μž„ν•˜κ³  μžˆμŠ΅λ‹ˆλ‹€.

0개의 λŒ“κΈ€