Python

Python Menu

Python

Python chr() Function - Definition, Syntax, Parameters, Examples

Definition

The chr() function returns the character that represents the specified unicode.

Syntax

chr(n)

Parameters

Parameter Description
n Integer representing a valid Unicode code point

Examples

myCharacter = chr(37) print(myCharacter)

Introduction

Python Basics

Python Advance

Data Science Python Tutorials

Python Functions and Methods