This commit is contained in:
2025-08-16 21:02:18 +08:00
parent 3f10677c91
commit 8041fa1438
3 changed files with 53 additions and 0 deletions

9
day5/字典函数.py Normal file
View File

@ -0,0 +1,9 @@
#a={'key':'value',}
def YuanShen(UID)->int:
if UID > 300000000:
print('欢迎新人')
else:
print('恭迎学长')
return UID
UID=int(input('UID:'))
YuanShen(UID)