Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
Pierian-Data
Edit Copy
Star
1
GitHub Repository:
Pierian-Data/Complete-Python-3-Bootcamp
Path:
blob/master/07-Errors and Exception Handling/cap.py
1
5
9
8
views
1
def
cap_text
(
text
)
:
2
return
text
.
title
(
)
# replace .capitalize() with .title()
3