Computer Science, asked by sjindal3695, 9 months ago

In python which data type is an ordered and immutable

Answers

Answered by YuvrajPatil
0

Answer:

Since everything in Python is an Object, every variable holds an object instance. ... Simple put, a mutable object can be changed after it is created, and an immutable object can't. Objects of built-in types like (int, float, bool, str, tuple, unicode) are immutable

Similar questions