string.ascii_uppercase

Full name
string.ascii_uppercase
Library
string
Syntax

string.ascii_uppercase

Description

The variable string.ascii_uppercase returns the text string:

'ABCDEFGHIJKLMNOPQRSTUVWXYZ'

Parameters

The variable string.ascii_uppercase does not accept arguments.

Result

The variable string.ascii_uppercase returns a text string.

Examples

We can obtain the set of letters contained in this variable with the following code:

string.ascii_uppercase
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
Submitted by admin on Sat, 04/24/2021 - 11:14