Skip to content

Commit d514b05

Browse files
committed
added string replacing example
1 parent 116118f commit d514b05

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

Python-String/String-Formating.py

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Python String Formating Demostration
2+
3+
# Python program to demonstrate the
4+
# use of capitalize() function
5+
6+
# capitalize() first letter of
7+
# string.
8+
example = "Python LEARNINF"
9+
print ("String make to capitalize\n")
10+
print(example.capitalize())
11+
12+
# demonstration of individual words
13+
# capitalization to generate camel case
14+
name1 = "hello"
15+
name2 = "world"
16+
print ("2 String make to capitalize\n")
17+
print(name1.capitalize() + name2.capitalize())
18+
19+
# Python code for implementation of isupper()
20+
21+
# checking for uppercase characters
22+
string = 'PYTHON LEARNING'
23+
print (string)
24+
print ("\nChecking String is upper case\n")
25+
print(string.isupper())
26+
print ("\nChanging string upper case to lower\n")
27+
#change staring case using lower function
28+
print (string.lower())
29+
30+
string = 'python learning'
31+
# Python code for implementation of isupper()
32+
# checking for uppercase characters
33+
print (string)
34+
print ("\nChecking String is upper case\n")
35+
print(string.isupper())
36+
#change staring case using lower function
37+
print ("\nChanging string lower case to upper\n")
38+
print (string.upper())
39+
40+
string = "Python Learning"
41+
# Python code for implementation of swapcase()
42+
print (string)
43+
print ("\nChanging string case using swapcase function\n")
44+
print (string.swapcase())
45+
46+
string = "python learning"
47+
# Python code for implementation of title()
48+
print (string)
49+
print ("\n make title of string\n")
50+
print (string.title())

0 commit comments

Comments
 (0)