[python]Substring
We can store strings in variable as a list of characters
var = "this is a string"
we can refer part of the string by
print(var[0:5])
We can store strings in variable as a list of characters
var = "this is a string"
we can refer part of the string by
print(var[0:5])