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 program that takes a value x and then outputs x Fibonnaci numbers. E.g. if x=6 output would be 1 1 2 3 5 8


What is Object-Oriented Programming?


Write a simple number guessing game, give the user 3 tries to guess a number between 1 and 10


How do you define a class in python