Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
pierian-data
Edit Copy
Star
GitHub Repository:
pierian-data/complete-python-3-bootcamp
Path:
blob/master/07-Errors and Exception Handling/cap.py
8
2
6
views
1
def
cap_text
(
text
)
:
2
return
text
.
title
(
)
# replace .capitalize() with .title()
3