Files

6 lines
224 B
Python
Raw Permalink Normal View History

2019-07-22 15:22:11 +03: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])