KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

Write short notes on Character Sets with reference to Python language.

Getting Started

2 Likes

Answer

Python is a computer language that enables the users to communicate with the computer system, using the set of valid characters that the language can recognise, similar to the alphabet of English language. It may be any letter, digit or any other symbol. The different character sets used in Python include Letters (A-Z and a-z), Digits (0-9), Arithmetical Operators (+, -, *, \/, %), Logical Operators (and, or, not), Relational Operators (<, <=, >, >=, == and !=), Special Characters (space, backslash, underscore, parenthesis, etc.) and White Spaces (Blank space, Tab key, Enter key, Newline).

Answered By

3 Likes


Related Questions