-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDiff_Cases_of_a_String.py
88 lines (78 loc) · 2.47 KB
/
Diff_Cases_of_a_String.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
def upper_case():
global string
flag = 1
while flag:
flag = 0
try:
string = input("Enter the string: ")
length = 0
if string.isnumeric() or string.isspace():
print("Enter a Valid String")
flag = 1
elif set('[0987654321]+$').intersection(string):
print("Enter a Valid String")
flag = 1
except ValueError:
print("Enter a Valid String")
flag = 1
if set('[~!@#$%^&*()_+{}":;\']+$').intersection(string):
print("Invalid entry.")
flag = 1
else:
new_string = string.upper()
length += 1
return new_string
UC = upper_case()
print("The upper case of the String is:", UC)
def lower_case():
global string
flag = 1
while flag:
flag = 0
try:
string = input("Enter the string: ")
length = 0
if string.isnumeric() or string.isspace():
print("Enter a Valid String")
flag = 1
elif set('[0987654321]+$').intersection(string):
print("Enter a Valid String")
flag = 1
except ValueError:
print("Enter a Valid String")
flag = 1
if set('[~!@#$%^&*()_+{}":;\']+$').intersection(string):
print("Invalid entry.")
flag = 1
else:
new_string = string.lower()
length += 1
return new_string
lc = lower_case()
print("The Lower Case of the String is", lc)
def camel_case():
global string
flag = 1
while flag:
flag = 0
try:
string = input("Enter the string: ")
length = 0
if string.isnumeric() or string.isspace():
print("Enter a Valid String")
flag = 1
elif set('[0987654321]+$').intersection(string):
print("Enter a Valid String")
flag = 1
except ValueError:
print("Enter a Valid String")
flag = 1
if set('[~!@#$%^&*()_+{}":;\']+$').intersection(string):
print("Invalid entry.")
flag = 1
else:
new_string = string.capitalize()
length += 1
return new_string
cc = camel_case()
print("The Camel Case of the string is", cc)