ok, so a string is treated just like a list in python. just found out about that.
some corrections:
word = 'house'
or
word = "house"
you access a character of a string as word[a] where a is an integer.
ok, so a string is treated just like a list in python. just found out about that.
some corrections:
word = 'house'
or
word = "house"
you access a character of a string as word[a] where a is an integer.