Skip to content

Instantly share code, notes, and snippets.

View santiagoelie's full-sized avatar

Eliezer Santiago santiagoelie

View GitHub Profile
@CavaTrendy
CavaTrendy / Module 1 Fundamentals 0.0
Created April 30, 2018 11:14
Introduction to Python - Unit 2 Fundamentals
# [ ] 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"