how to print first half of a string in python code example
Example: python half of string
First_half=YourString[:len(YourString)//2]
Second_half=YourString[len(YourString)//2]
First_half=YourString[:len(YourString)//2]
Second_half=YourString[len(YourString)//2]