diff --git a/Char_to_ASCII/Char_to_ascii_Python b/Char_to_ASCII/Char_to_ascii_Python new file mode 100644 index 0000000..45f0897 --- /dev/null +++ b/Char_to_ASCII/Char_to_ascii_Python @@ -0,0 +1,3 @@ +ch= input("Enter any character: ") + +print("The ASCII value of char " + ch + " is: ",ord(ch))