Files
Learn/day5/字典函数.py

9 lines
189 B
Python
Raw Normal View History

2025-08-16 21:02:18 +08:00
#a={'key':'value',}
def YuanShen(UID)->int:
if UID > 300000000:
print('欢迎新人')
else:
print('恭迎学长')
return UID
UID=int(input('UID:'))
YuanShen(UID)