python-by-example-150-chall.../challenges80-87/challenge-082.py

6 lines
224 B
Python
Raw Normal View History

2019-07-22 20:22:11 +08:00
poem = 'Here we stand, and still we fight until we won'
print(poem)
start_point = int(input('Enter start point in this poem : '))
end_point = int(input('Enter end point in this poem : '))
print(poem[start_point: end_point])