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,938 questions

51,875 answers

573 users

How to copy part of a string to a different string in Python

1 Answer

0 votes
s = "Python programming language"

part = s[7:]
print(part)  # programming language

part = s[:6]
print(part)  # Python

part = s[:-4]
print(part)  # Python programming lang

part = s[-4:]
print(part)  # uage

part = s[2:3]
print(part)  # t

part = s[2:-4]
print(part)  # thon programming lang

'''
run:

programming language
Python
Python programming lang
uage
t
thon programming lang

'''

 



answered Sep 10, 2015 by avibootz

Related questions

1 answer 242 views
7 answers 571 views
1 answer 231 views
1 answer 253 views
2 answers 265 views
2 answers 142 views
...