PasteCode
API
FAQ
ARCHIVE
Log in
Sign up
API
FAQ
ARCHIVE
A. Антон и буквы
public
yeskendir.sultanov
Apr 26, 2024
Never
63
Copy link
Share
Clone
Embed
IFrame
Python
18.py
9 lines (6 loc)
|
113 Bytes
Raw
Ask AI to explain
Copy to clipboard
Raw
Download
Print
1
s =
input
()
2
3
b =
set
()
4
5
for
x
in
s:
6
if
'a'
<= x
and
x <=
'z'
:
7
b.add(x)
8
9
print
(
len
(b))