This website works better with JavaScript.
Home
Explore
帮助
返回水杉在线
登录水杉在线
登录水杉码园
Comp-Prog-A.Liuyao.2021Fall.XinYuan
/
AllStuWrite
Watch
61
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
删除 'sy5-11.py'
master
吴思辰
3 years ago
parent
953628d36c
commit
6b153336e8
1 changed files
with
0 additions
and
8 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-8
sy5-11.py
+ 0
- 8
sy5-11.py
View File
@ -1,8 +0,0 @@
def
isLeap
(
year
)
:
if
(
(
year
%
4
==
0
and
year
%
100
!=
0
)
or
(
year
%
100
==
0
and
year
%
400
==
0
)
)
:
return
True
;
else
:
return
False
;
for
i
in
range
(
1900
,
2022
)
:
if
(
isLeap
(
i
)
)
:
print
(
f
'
{i}
'
,
end
=
'
\t
'
)
Write
Preview
Loading…
Cancel
Save