以下のコードの実行結果はどうなりますか? ```python data = [1, 2, 2, 3, 3, 3, 4, 4, 4, 4] unique_count = len(set(data)) print(unique_count) ```