本文整理汇总了Python中tealight.robot.move函数的典型用法代码示例。如果您正苦于以下问题:Python move函数的具体用法?Python move怎么用?Python move使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了move函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: go
def go():
while True:
if left_side() == False:
turn(1)
if right_side() == False:
turn(-1)
move()
示例2: rowsl
def rowsl():
turn(-1)
for n in range(0,4):
move()
turn(-1)
for j in range(0,32):
move()
示例3: go
def go():
move()
if (touch()!='fruit'):
turn(-1)
go()
return
go()
示例4: go
def go():
while touch() == "fruit":
move()
if touch() != "fruit":
turn(3)
go()
示例5: columnsd
def columnsd():
turn(-1)
for n in range(0,4):
move()
turn(-1)
for k in range(0,30):
move()
示例6: rowsr
def rowsr():
turn(1)
for n in range(0,4):
move()
turn(1)
for j in range(0,32):
move()
示例7: go
def go():
moved = 0
while touch() == "fruit":
move()
moved = moved + 1
turn(-1)
示例8: super_move
def super_move():
if touch() != "wall":
move()
elif left_side() == "wall":
turn(1)
else:
turn(3)
示例9: find_fruit
def find_fruit():
for i in range(1,4):
if (look() == "fruit"):
move()
return True
else:
turn(1)
return False
示例10: main
def main():
while True:
while True:
move()
if right_side()=='wall' and touch()=='wall':
turn(-1)
elif left_side()=='wall' and touch()=='wall':
turn(1)
示例11: left_way
def left_way():
while True:
move()
if (left_side() != "wall"):
turn(-1)
elif (touch() == "wall" and right_side() != "wall"):
turn(1)
elif (touch() == "wall"):
turn(2)
示例12: branch
def branch(dir):
turn(dir)
if touch() == 'fruit':
while touch() == 'fruit':
move()
elif left_side() == 'fruit':
branch(-1)
elif right_side() == 'fruit':
branch(1)
示例13: find
def find():
i=0
while touch()!='fruit' and left_side()!='fruit' and right_side()!='fruit':
if look()=='fruit':
i=i+1
print i
move()
else:
turn(-1)
move()
示例14: MoveSearch
def MoveSearch(thing):
global wallcount
wallcount = 0
distance = 1
i = 0
while i < distance:
if touch() == thing:
distance += 1
i += 1
if i < distance:
move()
示例15: test_way
def test_way():
while True:
if (find_fruit() == False):
if (touch() != "wall"):
a=1
elif (left_side() != "wall"):
turn(-1)
elif (right_side() != "wall"):
turn(1)
elif (touch() == "wall"):
turn(2)
move()