Toggle navigation
English
Chinese
Python Sandbox
Please refer to
this tutorial
to find more details on the following codes.
# # String variables # x='My name is Alice' print(x) print(x[0]) print(x[1]) print(x[4:6])
Run
List