From d8f0ed6cea34490592e01444abb66bb19a2ec5d2 Mon Sep 17 00:00:00 2001 From: Sagar singh gurjar <73120159+sagar705@users.noreply.github.com> Date: Mon, 19 Oct 2020 20:18:41 +0530 Subject: [PATCH] ASCII VALUE CHARACTER The ASCII value of 'p' is 112 ASCII stands for American Standard Code for Information Interchange. It is a numeric value given to different characters and symbols, for computers to store and manipulate. For example, the ASCII value of the letter 'A' is 65. --- ASCIIvaluecharacter | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 ASCIIvaluecharacter diff --git a/ASCIIvaluecharacter b/ASCIIvaluecharacter new file mode 100644 index 00000000000..7fb487ab6db --- /dev/null +++ b/ASCIIvaluecharacter @@ -0,0 +1,4 @@ +# Program to find the ASCII value of the given character + +c = 'p' +print("The ASCII value of '" + c + "' is", ord(c))