Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to split a string into 2 equal halves without using a loop in Python?

share|improve this question

2 Answers

up vote 9 down vote accepted
firstpart, secondpart = string[:len(string)/2], string[len(string)/2:]
share|improve this answer
Or even firstpart, secondpart = string[::2], string[1::2] since the question didn't specify that the parts had to be contiguous. – Duncan Jan 25 '11 at 9:16
@Duncan, :) good answer too.. :) – Senthil Kumaran Jan 25 '11 at 9:35
a,b = given_str[:len(given_str)/2], given_str[len(given_str)/2:]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.