我想将毫秒转换为时间。请帮助我
from datetime import datetime
from dateutil.parser import parse
current = datetime.now()
print(current)
milli = current.microsecond
print(milli)
答案 0 :(得分:2)
您指的是毫秒? 如果要使用日期时间格式,请使用
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane prefHeight="400" prefWidth="800" xmlns="http://javafx.com/javafx/10.0.1" xmlns:fx="http://javafx.com/fxml/1">
<children>
<VBox fx:id="VBox" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/10.0.1" xmlns:fx="http://javafx.com/fxml/1" />
</children>
</AnchorPane>
输出为
timenow=datetime.timedelta(milliseconds=999999)
print(timenow)