How to create a string made of the first 2 and the last 2 chars from a given a string in Python

1 Answer

0 votes
def string_form_first_2_and_last_2(str):
  if len(str) < 2:
    return ''
    
  return str[0:2] + str[-2:]


print(string_form_first_2_and_last_2('python'))
print(string_form_first_2_and_last_2('ab'))
print(string_form_first_2_and_last_2('q'))


 
 
'''
run:
 
pyon
abab
 
'''

 



answered Aug 30, 2021 by avibootz
...