Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
11
Task/String-case/Python/string-case-1.py
Normal file
11
Task/String-case/Python/string-case-1.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
s = "alphaBETA"
|
||||
print s.upper() # => "ALPHABETA"
|
||||
print s.lower() # => "alphabeta"
|
||||
|
||||
print s.swapcase() # => "ALPHAbeta"
|
||||
|
||||
print "fOo bAR".capitalize() # => "Foo bar"
|
||||
print "fOo bAR".title() # => "Foo Bar"
|
||||
|
||||
import string
|
||||
print string.capwords("fOo bAR") # => "Foo Bar"
|
||||
Loading…
Add table
Add a link
Reference in a new issue