file_b ='djhfaheu___wehiehrhlsfhouhewwehr1238364892hrehwfwhelhewlehrlewhiorhhf3824863___883@hre93734084fdfhieelwhfhieistart#.redro lacitebahpla yb kcatta trats eW .yti@sr@@evinu,tna@lp rae@@lcun,llam@ gni@@ppoh@s,lla@h@ y@tic,tekr@am kcots,noi@tats eci@l@op,ret@aeht:secalp gniwollof fo eno si tegrat ehT#endhfdhsifohifeifhlk368537djs89hds83e____89fwgafg3dbsjhgdiutwfw823___t93g3%@iu3977e&egd37dheehdgsaioiowi'

# 장소가 담긴 리스트를 만들어주세요
##start 와 end 단어 사이에 있는 문자열을 잘라보세요
##find()
print(file_b.find('start'))



text='sdfkjsdlfkjsdflkjsstartilovepythonend'
print(text.find('start'))
print(text.find('end'))
print(text[23:34])

print(file_b[109:114])

#문자열 뒤집어보세요
fruit='ananab'
print(fruit[::-1])



#장소가 담긴 부분만 남겨보세요
#필요없는 글자를 삭제하세요  

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: