This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [ ] review and run example - note the first element is always index = 0 | |
student_name = "Alton" | |
print(student_name[0], "<-- first character at index 0") | |
print(student_name[1]) | |
print(student_name[2]) | |
print(student_name[3]) | |
print(student_name[4]) | |
# [ ] review and run example | |
student_name = "Jin" |