文章

6

粉丝

79

获赞

0

访问

2.8k

头像
字符移动 题解:Python
P1012 贵州大学机试题
发布于2024年3月5日 22:53
阅读数 589

while True:
    try:
        str = input()
        digit_text = ""
        other_text = ""
        for char in str:
            if char.isdigit():
                digit_text += char
            else:
                other_text += char
        text = other_text + digit_text
        print(text)
    except:
        break

 

#通过isdigit()判断数字并保存为一个字符串
#最后通过text把非数字和数字字符串合并

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发