x.upper()
A = "WELCOME, let's learn new method "
# Make all the alphabets in A uppercase and put it into B
B = A.upper()
# Print B
B
x.lower
C="WELCOME, LET'S LEARN NEW METHOD "
# Make all the alphabets in C lowercase and put it into D
D = C.lower()
# Print D
D
# Print A
A
# Check if all alphabets in A is uppercase
A.isupper()
# Print B
B
# Check if all alphabets in B is uppercase
B.isupper()
# Print C
C
# Check if all alphabets in C is uppercase
C.isupper()
# Print D
D
# Check if all alphabets in D is uppercase
D.isupper()
# Print A
A
# Check if all alphabets in A is lowercase
A.islower()
# Print B
B
# Check if all alphabets in B is lowercase
B.islower()
# Print C
C
# Check if all alphabets in B is lowercase
C.islower()
# Print D
D
# Check if all alphabets in D is lowercase
D.islower()