python代码实现时间从12小时制到24小时制的转换

Posted Data+Science+Insight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python代码实现时间从12小时制到24小时制的转换相关的知识,希望对你有一定的参考价值。

python代码实现时间从12小时制到24小时制的转换

 

# python代码实现时间从12小时制到24小时制的转换

# 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 12
	if 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 12
	elif str1[-2:] == "PM" and str1[:2] == "12":
		return str1[:-2]
		
	else:
		
		# add 12 to hours and remove PM
		return str

以上是关于python代码实现时间从12小时制到24小时制的转换的主要内容,如果未能解决你的问题,请参考以下文章

SimpleDateFormat 12小时制和24小时制的区别

我的电脑的时间是12小时制的,如何改成24小时制的?

日期12小时 || 24小时制切换

php 24小时格式的日期转换为12小时的日期

用java写一个程序把24小时制的时间转换为12小时制的时间.具体说明内详

PAT-12-24小时制