Is there a way to split a string into 2 equal halves without using a loop in Python?
a,b = given_str[:len(given_str)/2], given_str[len(given_str)/2:]