Skip to content

Instantly share code, notes, and snippets.

@RaMSFT
Created October 21, 2022 03:52
Show Gist options
  • Save RaMSFT/112eadb95ba1facf2e395c0778b74195 to your computer and use it in GitHub Desktop.
Save RaMSFT/112eadb95ba1facf2e395c0778b74195 to your computer and use it in GitHub Desktop.
def front3(str):
if len(str) > 3:
return str[:3] * 3
else:
return str * 3
print(front3("Python"))
print(front3("Cucumber"))
print(front3("bioshock"))
print(front3("Ra"))
print(front3("Insights and Data"))
print(front3("Spark"))
print(front3("Databricks"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment