5th day of python challenges 80-87
This commit is contained in:
5
challenges80-87/challenge-082.py
Normal file
5
challenges80-87/challenge-082.py
Normal file
@@ -0,0 +1,5 @@
|
||||
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])
|
Reference in New Issue
Block a user