Python Daily Challenges Day008 For Beginners #programming #python #beginners

preview_player
Показать описание
This is a Python programming problem for beginners. Please try it as an introduction. Examples of the correct answers in Python:

Q 022.
y_list = [10, 4, 6, 2]
print(min(my_list))

Q 023.
text = "hello"

Q 024.
my_list = [1, 2, 2, 3, 4, 4]
unique_list = list(set(my_list))
print(unique_list)
Рекомендации по теме