please dont answer the question if you dont know the answer correctly. ....write a python program to print the ASCII values of the character which is entered...
Answers
Answer:
Python code using ord function :
ord() : It coverts the given string of length one, return an integer representing the unicode code point of the character. For example, ord(‘a’) returns the integer 97.
# Python program to print
# ASCII Value of Character
# In c we can assign different
# characters of which we want ASCII value
c = 'g'
# print the ASCII value of assigned character in c
print("The ASCII value of '" + c + "' is", ord(c))
Output:
The ASCII value of g is 103
C code: We use format specifier here to give numeric value of character. Here %d is used to convert character to its ASCII value.
// C program to print
// ASCII Value of Character
#include <stdio.h>
int main()
{
char c = 'k';
// %d displays the integer value of a character
// %c displays the actual character
printf("The ASCII value of %c is %d", c, c);
return 0;
}
Output:
The ASCII value of k is 107
C++ code: Here int() is used to convert character to its ASCII value.
// CPP program to print
// ASCII Value of Character
#include <iostream>
using namespace std;
int main()
{
char c = 'A';
cout << "The ASCII value of " << c << " is " << int(c);
return 0;
}
Output:
The ASCII value of A is 65
Java code : Here, to find the ASCII value of c, we just assign c to an int variable ascii. Internally, Java converts the character value to an ASCII value.
// Java program to print
// ASCII Value of Character
public class AsciiValue {
public static void main(String[] args)
{
char c = 'e';
int ascii = c;
System.out.println("The ASCII value of " + c + " is: " + ascii);
}
}
C# code : Here, to find the ASCII value of c, we just assign c to an int variable ascii. Internally, C# converts the character value to an ASCII value.
// C# program to print
// ASCII Value of Character
using System;
public class AsciiValue
{
public static void Main()
{
char c = 'e';
int ascii = c;
Console.Write("The ASCII value of " +
c + " is: " + ascii);
}
}
// This code is contributed
// by nitin mittal
Output:
The ASCII value of e is 101
Explanation:
Is this ohk
Hope this will help you ☺
Explanation:
. Python Programming/Text. To get the ASCII code of a character, use the ord() function. To get the character encoded by an ASCII code number, use the chr() function. To know if all the characters present in a string are alphanumeric i.e. they are alphabets and numeric, use the isalnum() function.
please mark as brinlist and follow me