From c6e46340f8cb708f473ba519d155dc0bf9cc8ba1 Mon Sep 17 00:00:00 2001 From: Shashank Srivastava <44526306+shashankcoc@users.noreply.github.com> Date: Thu, 1 Oct 2020 11:13:37 +0530 Subject: [PATCH] Create Char_to_ascii_Python --- Char_to_ASCII/Char_to_ascii_Python | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Char_to_ASCII/Char_to_ascii_Python 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))