Python List vs Array

Like in many other programming languages Python also provides some inbuilt data types this includes list, tuple, sets, dictionaries, etc. In this article, we will discuss the similarities and differences between lists and arrays. The list data type is exclusively used in Python. You can use this to store multiple values in a single variable. … Read more

inCarDoc – App Download | OBD2 ELM327 Car Scanner

🔌 Your connected car 🚘 inCarDoc – best doctor for your car: Check Engine codes reading, diagnostic, car scanning, monitoring and logbook tool: reads real-time and stored diagnostics parameters from ECU of OBD-II compliant cars. Requires ELM327 or compatible OBD2 car scanner. Supported: OBD-II (Bluetooth, WiFi, Kiwi 3 (BLE), V-Gate iCar 3 (BLE), Veepeak (BLE), … Read more

Python Frozensets

Python frozensets are same as the set data type in Python the only difference is that frozensets are immutable which means you can’t add or remove the elements once it is created. Frozensets are hashable and can be used as keys to a dictionary. In this article, you will learn python frozensets with some examples. … Read more

Python Sets

A set in Python is an unordered collection of unique items. Like a dictionary in Python, there is no indexing of set elements. The sets are mutable which means we can add or remove elements from them. Python sets can also be used to perform mathematical set operations such as union, intersection, set difference, etc. … Read more

Python Dictionary Data Type

Python dictionary is an unordered collection of data values it stores data in key:value pairs. A pair of braces i.e. {} without any value creates an empty dictionary. You can initialize it by providing key and value pairs separated with a comma. In this article, you will learn the Python dictionary and different operations that … Read more

Python List Data Type

The list data type is exclusively used in Python. You can use this to store multiple values in a single variable. This data type is very similar to array in c/ c++ but instead of holding a single type, simultaneously it can hold multiple different types of value such as number, string, float, etc. In … Read more

Exit mobile version