NP22 删除简历

This commit is contained in:
轩辕龙儿 2022-10-26 10:50:22 +08:00
parent bde4b7fbf5
commit f0d2e1fd08

13
NP/NP22.py Normal file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env python3
# @author 轩辕龙儿
# @date 2022/10/26
# @file NP22.py
def solution():
com = input().split()
com.remove(com[0])
print(com)
if __name__ == "__main__":
solution()