程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

[learn Python from simple to deep] object oriented 3 module class and date time class

編輯:Python

One 、 Modules are also classes

Modules are also classes , for example pandas modular , Installation mode pip install pandas

from pandas import Series
# Instantiation 
ser1=Series(data=[4,7,-5,3])
print(ser1.values)
print(ser1.sum())

[ 4 7 -5 3]
9

Two 、 Date time class datetime

from datetime import datetime
# Instantiation 
dt1=datetime(2022,1,1)
print(dt1)

2022-01-01 00:00:00

dt2=datetime(2022,1,1,12,30,5)
print(dt2)

2022-01-01 12:30:05

# Calling method 
print(dt2.day)# Check the day 
print(dt2.minute)# see 
print(dt2.date())

1
30
2022-01-01

strpttime

#strpttime
string_dt='2019-1-1'
print(type(string_dt))

<class ‘str’>

print(datetime.strptime(string_dt,'%Y-%m-%d'))

2019-01-01 00:00:00


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved