What built-in types does python provide?

There are mutable and immutable python types. The mutable ones are lists, sets and dictionaries. The immutable ones are strings, tuples and numbers

DG

Related Python Mentoring answers

All answers ▸

Write a basic program to output the lowest of 3 input numbers. (You may omit error checks on your inputs)


How do you define a class in python


Write a short program to print all the even numbers 1 to 100


Explain why creating a list of several instances of one element using something like my_list = [a] * 5 can result in strange behaviour