yazilimca icon indicating copy to clipboard operation
yazilimca copied to clipboard

Değişkenler İle İlgili Terimler

Open volkantash opened this issue 3 years ago • 0 comments

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))

volkantash avatar Dec 03 '21 13:12 volkantash