yazilimca
yazilimca copied to clipboard
Değişkenler İle İlgili Terimler
variable
- data types
- text types
- string: "Hello World"
- numeric types
- integer: 20
- float: 20.5
- complex: 1j
- sequence types
- list: ["apple", "banana", "cherry"]
- tuple: ("apple", "banana", "cherry")
- range: range(6)
- mapping types
- dictionary: {"name" : "John", "age" : 36}
- set types
- set: {"apple", "banana", "cherry"}
- frozenset: frozenset({"apple", "banana", "cherry"})
- boolean types
- boolean: True
- binary types
- bytes: b"Hello"
- bytearray: bytearray(5)
- memoryview: memoryview(bytes(5))
- text types