python3 使用 单星号操作符 *更多的介绍和学习参考:https://blog.csdn.net/qq_39478403/article/details/105751013https://stackoverflow.com/questions/40676085/why-cant-i-use-a-starred-expression try: *_, last = map(str, input().split()) print(len(last)) except: pass