gpt4 book ai didi

python - 字符串与格式的比较 - Python

转载 作者:行者123 更新时间:2023-12-02 06:43:43 27 4
gpt4 key购买 nike

我想检查用户是否按特定顺序输入。基本上我希望用户以这样的格式输入日期

%d/%m/%y %H:%M

有什么方法可以在 python 中将字符串输入与上述格式进行比较?

最佳答案

import time
time.strptime("01/01/09 12:23", "%d/%m/%y %H:%M")

如果字符串不匹配,这将引发 ValueError:

time.strptime("01/01/09 12:234", "%d/%m/%y %H:%M")
time.strptime("01-01-09 12:23", "%d/%m/%y %H:%M")

顺便说一下,请不要带回两位数的年份——尽可能使用 %Y。

关于python - 字符串与格式的比较 - Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3928999/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com