What is data type in python?
Answer / Surender Singh Negi
In Python, a data type refers to a set of values that have similar properties and can be operated upon in a similar manner. Python has several built-in data types including integers (int), floating point numbers (float), strings (str), lists, tuples, dictionaries, booleans (True/False) and None.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between old style and new style classes in python?
What does while true do in python?
What does return none mean in python?
How do I generate random numbers in python?
How can you pick a random item from a list or tuple in python?
What is meant by“call by value” in python?
What is the use of the break statement?
What does the <self> keyword do?
What is lambda? Why do lambda forms not have statements?
What is the process of compilation and linking in python?
What is for-else and while-else in python?
What is final and super keyword difference between them?