Hashes

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Michael McGarry

    #1

    Hashes

    Hi,

    Are there hashes in Python?

    Michael
  • Peter Hansen

    #2
    Re: Hashes

    Michael McGarry wrote:[color=blue]
    > Are there hashes in Python?[/color]

    Define hash. Or look at Python's 'dict' type, or the hash()
    function and decide for yourself if that's what you meant.

    -Peter

    Comment

    • Michael McGarry

      #3
      Re: Hashes

      Peter Hansen wrote:[color=blue]
      > Michael McGarry wrote:
      >[color=green]
      >> Are there hashes in Python?[/color]
      >
      >
      > Define hash. Or look at Python's 'dict' type, or the hash()
      > function and decide for yourself if that's what you meant.
      >
      > -Peter[/color]
      Yes, I guess the dict type is what I am looking for.

      Thank you,

      Michael

      Comment

      Working...