Answers for "slice string in half pyton"

2

split string in the middle python

firstpart, secondpart = string[:len(string)/2], string[len(string)/2:]
Posted by: Guest on October-15-2020

Python Answers by Framework

Browse Popular Code Answers by Language