题解 | #坐标移动#

坐标移动

https://www.nowcoder.com/practice/119bcca3befb405fbe58abe9c532eb29

string = input().split(';')


x,y = 0, 0
for n in string:
    # print(n, x, y)
    if n == '':
        continue
    elif not n[0] in ['A', 'S', 'W', 'D']:
        continue
    else:
        try:
            step = int(n[1:])
            # print(step)
            if n[0] == 'A':
                x -= step
            elif n[0] == 'D':
                x += step
            elif n[0] == 'W':
                y += step
            else:
                y -= step
        except:
            continue
    
print('{},{}'.format(x, y))

采用try-except判断第一个字母后是否是一个完整的数字

全部评论

相关推荐

想润的芹菜人狠话不多:把其中一个老总放中间都会得罪另一个
点赞 评论 收藏
分享
牛客101244697号:这个衣服和发型不去投偶像练习生?
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务