+ 1
Are the reasons behind why Python manages objects, anywhere they could be read about?
it would help my progress to know why integers can be added to floats but not strings and why integer can become floats but not go back, etc
1 Réponse
0
The main data types are: strings, numbers, lists, tuples, and dictionaries. If you want to manipulate/combine 2 DIFFERENT data types, type conversion must be used (str(), int(), etc). Also data types are either mutable or immutable, research that also