LearningPy/main.py

11 lines
157 B
Python
Raw Normal View History

2022-11-30 16:59:34 +00:00
#String tests
a = "hello world"
2022-11-30 17:06:34 +00:00
#[lw_inc:up_exc]
print(a[2:8])
print(a[:8])
print(a[2:])
2022-11-30 17:10:44 +00:00
#From the end
print(a[-8:-2])
print(a[-8:])
print(a[:-2])