# Can be used to del or delete any type of data-type classtype = [] classtype.append("hello") print(classtype) # Gives "hello": ["hello"] del classtype[0] print(classtype) # Gives nothing: []