Simple types / Character type
Converting to a string
Getting from a string
Converting to a number and back
Escape characters
Special characters
Checking the character case
Checking the character type
c_ruble =
'
\u20BD
'
# ₽
c_lambda =
'
\u03BB
'
# λ
print
(f
"
{c_ruble = }
"
)
print
(f
"
{c_lambda = }
"
)