Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

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
...