wendy on Nostr: dave Can you comment on this coding, which instructs karel to build hospitals? from ...
dave (npub1tsg…htk4)
Can you comment on this coding, which instructs karel to build hospitals?
from karel.stanfordkarel import *
def main():
while front_is_clear():
move()
if beepers_present():
build_hospital()
else:
turn_left()
turn_right()
def build_hospital():
turn_left()
for i in range(2):
move()
put_beeper()
turn_right()
...
Can you comment on this coding, which instructs karel to build hospitals?
from karel.stanfordkarel import *
def main():
while front_is_clear():
move()
if beepers_present():
build_hospital()
else:
turn_left()
turn_right()
def build_hospital():
turn_left()
for i in range(2):
move()
put_beeper()
turn_right()
...