9 lines
164 B
Python
9 lines
164 B
Python
>>> soliloquy # Just a reminder of what the string is
|
|
'To be, or not to be, that is the question:'
|
|
>>> soliloquy[0]
|
|
'T'
|
|
>>> soliloquy[1]
|
|
'o'
|
|
>>> soliloquy[2]
|
|
' '
|