This website works better with JavaScript
Главная
Обзор
Помощь
Вход
jack
/
cocorobolx
Следить
1
В избранное
0
Ответвить
0
Файлы
Задачи
0
Вики
Дерево:
e0ea877bab
Ветки
Метки
master
cocorobolx
/
skulpt
/
test
/
run
/
t296.py
t296.py
86 B
История
Исходник
1
2
3
4
5
6
# Test the creation of sets
l = [1,2,3,4,1,1]
print l
s = set(l)
print s
print len(s)