エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
shaとかhashlibとか - When it’s ready.
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
shaとかhashlibとか - When it’s ready.
python2.6になって、md5モジュールとshaモジュールをインポートすると >>> import md5 __main__:1: Depr... python2.6になって、md5モジュールとshaモジュールをインポートすると >>> import md5 __main__:1: DeprecationWarning: the md5 module is deprecated; use hashlib instead >>> import sha __main__:1: DeprecationWarning: the sha module is deprecated; use the hashlib module instead ワーニングが出てくる。ワーニングは出るけど、使えない事はない。しかし、これがpython3.0だと >>> import md5 Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No mo