Création d'une liste avec plusieurs éléments distincts ou en double

# Creating a List with
# the use of Numbers
# (Having duplicate values)
List = [1, 2, 4, 4, 3, 3, 3, 6, 5]
print("\nList with the use of Numbers: ")
print(List)
 
# Creating a List with
# mixed type of values
# (Having numbers and strings)
List = [1, 2, 'Softhunt', 4, '.net', 6]
print("\nList with the use of Mixed Values: ")
print(List)
Outrageous Ostrich