python代码实现时间从12小时制到24小时制的转换
生活随笔
收集整理的這篇文章主要介紹了
python代码实现时间从12小时制到24小时制的转换
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
python代碼實(shí)現(xiàn)時(shí)間從12小時(shí)制到24小時(shí)制的轉(zhuǎn)換
# python代碼實(shí)現(xiàn)時(shí)間從12小時(shí)制到24小時(shí)制的轉(zhuǎn)換
# Python program to convert time # from 12 hour to 24 hour format# Function to convert the date format def convert24(str1):# Checking if last two elements of time# is AM and first two elements are 12if str1[-2:] == "AM" and str1[:2] == "12":return "00" + str1[2:-2]# remove the AM elif str1[-2:] == "AM":return str1[:-2]# Checking if last two elements of time# is PM and first two elements are 12elif str1[-2:] == "PM" and str1[:2] == "12":return str1[:-2]else:# add 12 to hours and remove PMreturn str總結(jié)
以上是生活随笔為你收集整理的python代码实现时间从12小时制到24小时制的转换的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 三层交换机和路由器有什么区别:
- 下一篇: websocket python爬虫_p