forked from liukai234/python_course_record
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
liukai234
committed
May 23, 2020
1 parent
6c95d59
commit 02d3f6e
Showing
3 changed files
with
21 additions
and
24 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
''' | ||
@Description: | ||
@LastEditors: liukai | ||
@Date: 2020-04-24 19:40:51 | ||
@LastEditTime: 2020-05-08 20:19:57 | ||
@FilePath: /pyFile/test.py | ||
''' | ||
# x = map (lambda x: x * x if x % 2 == 0 else 0 , range(10)) | ||
# print([y for y in x]) | ||
|
||
if __name__ == "__main__": | ||
list = [] | ||
for i in range(10): | ||
list.append(int(input())) | ||
list.sort(reverse=True) | ||
print(list[0:1]) | ||
|
||
def test(): | ||
print("Hello python") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters