我正在尝试在 Python 中进行简单的“点移动”,在特定符号上使用自动增量,但它无法正常工作(位置保持不变),所以我需要一些帮助
import re
while True:
m=input(str("How robot should move? (use U,D,L,R to move): "))
if not re.match("^[U,D,L,R]*$", m):
print("WRONG MOVE! USE -> U,D,L,R")
if re.match("^[U,D,L,R]*$", m):
moves = list(m.split())
print(moves)
x = 0
y = 1
position = [x, y]
for U in moves:
if U == "U":
y+=y
print(position)
break
我想获得列表中每个符号的位置变化,所以如果输入将是“U,U,U”y 新位置将是 [0,3]
Smart猫小萌
相关分类