mikeudacity / robo-pace-betatest

0 stars 0 forks source link

benpinaya L0216 #26

Open bpinaya opened 7 years ago

bpinaya commented 7 years ago

Error compiling: Traceback (most recent call last): File "vm_main.py", line 33, in import main File "/tmp/vmuser_wuuuttrvox/main.py", line 2, in import studentMain File "/tmp/vmuser_wuuuttrvox/studentMain.py", line 1, in import runtime File "/tmp/vmuser_wuuuttrvox/runtime.py", line 5, in import util File "/tmp/vmuser_wuuuttrvox/util.py", line 12 def printInfo(self): ^ IndentationError: expected an indented block

bpinaya commented 7 years ago

This assignment should also give the tip about tuples and lists, since it gets confusing trying to change the values directly if not converted to list first, maybe something like: newLocation = sLocation newLocation = list(sLocation) newLocation[2] = orientation newLocation = tuple(newLocation)

cangelogamboa commented 7 years ago

Thanks for the feedback, you raise some good points.