此问题在此处已有答案:
Convert number to time in Python(3个答案)
4天前关闭。
我有以下 Dataframe :
现在我想将“ABZEIT”列转换为时间格式。因此,第一行将是:
13时05分15时40分14时20分16时30分7时40分12时05分17时15分
此问题在此处已有答案:
Convert number to time in Python(3个答案)
4天前关闭。
我有以下 Dataframe :
现在我想将“ABZEIT”列转换为时间格式。因此,第一行将是:
13时05分15时40分14时20分16时30分7时40分12时05分17时15分
1条答案
按热度按时间qyswt5oh1#
首先定义
to_time()
函数,然后使用map()
将其应用于 Dataframe 的解决方案。