programming-examples/python/String/Python function to get the first half of a specified stiring of even length.py

5 lines
147 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
def string_first_half(str):
return str[: len(str) / 2]
print(string_first_half('Python'))
print(string_first_half('JavaScript'))