您的位置:

Python时间戳转字符串

一、Python字符串转时间

在进行时间字符串转换之前,需要先了解Python中的时间模块,即time模块。

在Python中,时间的表示方式主要有两种,一种是时间戳,即从1970年1月1日 00:00:00开始到现在的秒数,另一种是格式化字符串,即将时间按照一定的格式展示出来。

在Python中,可以通过time模块将时间戳转换为格式化字符串。

import time

# 将时间戳转换为time struct对象
time_struct = time.localtime(1605861461)

# 将time struct对象转换为格式化字符串
time_str = time.strftime("%Y-%m-%d %H:%M:%S", time_struct)

print(time_str) # 输出结果为:"2020-11-20 19:44:21"

二、Python字符串转时间格式

有时候需要将字符串转换为时间格式,比如对于一个日期字符串,需要获取其星期几,或者获取该日期的其他详细信息。

Python中可以使用datetime模块中的strptime函数将字符串转换为时间对象。其中,strptime函数的第一个参数为字符串,第二个参数为时间的格式化字符串。

import datetime

date_str = "2020-11-20 19:44:21"

# 将日期字符串转换为时间对象
date_obj = datetime.datetime.strptime(date_str, "%Y-%m-%d %H:%M:%S")

print(date_obj.weekday()) # 输出结果为:4,表示星期五

三、Python字符串转换为时间

有时候需要将字符串转换为时间对象,以便进行日期计算等操作。

Python中可以使用datetime模块中的strptime函数将字符串转换为时间对象。

import datetime

date_str = "2020-11-20 19:44:21"

# 将日期字符串转换为时间对象
date_obj = datetime.datetime.strptime(date_str, "%Y-%m-%d %H:%M:%S")

print(date_obj) # 输出结果为:2020-11-20 19:44:21

四、Python字符串转列表

有时候需要将字符串转换为列表,以便进行列表操作。

Python中可以使用split函数将字符串按照指定的分隔符分割成多个元素。

string = "this is a string"
list_str = string.split()

print(list_str) # 输出结果为:['this', 'is', 'a', 'string']

五、Python字符串转为整数

有时候需要将字符串转换为整数,以便进行数字计算等操作。

Python中可以使用int函数将字符串转换为整数。如果字符串中包含不是数字的字符,则会抛出异常。

string = "12345"

int_num = int(string)

print(int_num) # 输出结果为:12345

六、Python字符串截取中间字符

有时候需要从一个字符串中截取其中的一部分字符,以便进行操作。

Python中可以使用切片操作从一个字符串中截取指定的部分字符。

string = "this is a string"

sub_string = string[5:7]

print(sub_string) # 输出结果为:'is'

七、Python字符串转模块名

在Python中,可以通过字符串指定模块名,然后动态地导入该模块。

module_name = "os"

module = __import__(module_name)

print(module.getcwd()) # 输出结果为:当前的工作目录

八、Python字符串转整数

有时候需要将一个字符串中的所有数字都转换为整数,以便进行数字计算等操作。

Python中可以使用正则表达式将字符串中的数字提取出来,然后使用int函数将其转换为整数。

import re

string = "this is 123 a string"

num_list = re.findall("\d+", string)

int_list = [int(i) for i in num_list]

print(int_list) # 输出结果为:[123]