Newb question, when I write:
def right_indent(s): print ' '*70+'s' #puts argument after 70 spaces right_indent('michael') s Why does it return s as a result? Shouldn't it be michael? This seems really simple but I have no idea what I'm doing wrong