Q:

Write a Python function to get a string made of its first three characters of a specified string. If the length of the string is less than 3 then return the original string.

0

Write a Python function to get a string made of its first three characters of a specified string. If the length of the string is less than 3 then return the original string. 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

def first_three(str):
	return str[:3] if len(str) > 3 else str

print(first_three('ipy'))
print(first_three('python'))
print(first_three('py'))

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now