How can I get the character's ASCII value without using any library function using python.
            Asked
            
        
        
            Active
            
        
            Viewed 624 times
        
    1 Answers
0
            
            
        You can use the function ord(), if that what you mean:
ord('A')
will give you 65
 
    
    
        Azarkuz
        
- 37
- 7
- 
                    2I think this is what library function means – python_user Mar 18 '21 at 12:00
- 
                    It is library function, I need help for without using library function. – Jay Shukla Mar 18 '21 at 12:17
