Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python program to print ASCII characters in lowercase

# input a number
s=int(input('Enter an ASCII value: '))

# getting its ascii character
n=chr(s)

# printing the result
print('ASCII of value {} is {}.'.format(s,n))
Comment

PREVIOUS NEXT
Code Example
Python :: dir() in python 
Python :: python read binary trj file 
Python :: stack concatenate dataframe 
Python :: python argparse optional required 
Python :: django-sslserver 
Python :: Sending POST request in Django 
Python :: django celery results 
Python :: django only certain columns from database 
Python :: distplot in python 
Python :: python last item in list 
Python :: merging df vertically 
Python :: subarray in python 
Python :: python cache 
Python :: how to put legend outside pie plot in python 
Python :: python detect warning 
Python :: how do you change a string to only uppercase in python 
Python :: py foreach 
Python :: python replace null in list 
Python :: google-api-python-client python 3 
Python :: string slices 
Python :: prevent division by zero numpy 
Python :: replace list python 
Python :: python json string indices must be integers 
Python :: queue using linked list in python 
Python :: sample logistic regression parameters for gridsearchcv 
Python :: hostname python 
Python :: making a return from your views 
Python :: if string is in array python 
Python :: Creating a Pandas Data Frame Series 
Python :: save screenshot of screen in pygame 
ADD CONTENT
Topic
Content
Source link
Name
6+9 =