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 ▸

Which four data types are used in Python? Can you give an example of each?


Write a function that takes a string, and outputs that string formatted in camelcase. (alternating upper and lower case for each character, e.g. cAmElCaSe)


Write a recursive function that takes any integer n and prints the nth Fibonacci number.


What does __init__ mean?