python 从键盘上输入小时、分钟、秒3个数,计算总时间为多少秒?

如题所述

第1个回答  2020-02-23
h,m,s=map(int,input().split())
print(h*3600+m*60+s)
相似回答
大家正在搜