Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 181 Bytes

every_char.md

File metadata and controls

11 lines (8 loc) · 181 Bytes

Every Character

Given a variable of a string, print character of the string on its own line.

Solution

string = "python"
for char in string:
    print(char)