Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
lesson7_6
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
70ad9d97ada5c88f75f218e3aa3eb0b747e5d71c
Switch branch/tag
lesson7_6
diy4.py
Find file
Blame
History
Permalink
auto save
· edf50e9f
BellCodeEditor
committed
3 years ago
edf50e9f
diy4.py
73 Bytes
Edit
1
2
3
4
5
a
=
int
(
input
(
"总秒数"
))
b
=
a
//
3600
c
=
a
%
3600
//
60
d
=
a
%
3600
%
60
print
(
b
,
c
,
d
)