how do i make this section loop? http://dpaste.com/556287/ its line 123-139 that im trying to loop
hmmm... how long do you want it to loop? or when do you want it to stop looping?
until someone wins
so something like while game_not_over: loop
i think while and for are the only 'looping' statements. from the docs: "The while statement is used for repeated execution as long as an expression is true" "The for statement is used to iterate over the elements of a sequence (such as a string, tuple or list) or other iterable object:" http://docs.python.org/reference/compound_stmts.html#the-while-statement http://docs.python.org/reference/compound_stmts.html#the-for-statement
my bad i wasn't thinking, but heres an updated version still has bugs in it, http://dpaste.com/556301/
okay finished debugging, i had a if statement seeing if wordFragment was bigger than 3 characters long but i forgot to put len(wordFragment) so now its all good, thanks again bwCA
Join our real-time social learning platform and learn together with your friends!