6 lines
224 B
Python
6 lines
224 B
Python
![]() |
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])
|