[Tutor] Second follow up

Steven D'Aprano steve at pearwood.info
Tue Feb 26 17:01:39 CET 2013


On 27/02/13 01:23, Jack Little wrote:
> How would I go from one def statement to another? I am developing a text based rpg.


def first_function():
     # write your code here, indented by FOUR spaces or ONE tab


def second_function():  # NO INDENT
     # write your code here, indented by FOUR spaces or ONE tab


Does that help?


-- 
Steven


More information about the Tutor mailing list