Get all characters in a string

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By djmick

How would I go about getting all of the characters (letters) in a string?

:bust_in_silhouette: Reply From: klaas

Hi!
Like so ?

var string = "Hello world"
for i in string:
	print( i )
1 Like