diff --git a/Program to convert lowercase to uppercase letters and vice-versa b/Program to convert lowercase to uppercase letters and vice-versa new file mode 100644 index 0000000..dbb5419 --- /dev/null +++ b/Program to convert lowercase to uppercase letters and vice-versa @@ -0,0 +1,2 @@ +string = input("Enter the string:") +print(string.swapcase())