LearningPy/main.py

7 lines
95 B
Python

#String tests
a = "hello world"
#[lw_inc:up_exc]
print(a[2:8])
print(a[:8])
print(a[2:])