alright well a few things then. i have no idea what a flag is. never heard of it before nor do i know how to use it.
i've been thinking about how i am going to do it by using lists. the only ...
deanh77Jan 28, 2005
you'll need to figure out how to use Python's string manipulation library to convert a string into an array.
str1 = "treehouse"
is a string,
list1 = ["t","r","e","e","h","o","u","s","e"] ...