タグ付けされた質問 「python-3.7」

4
データクラスとは何ですか?それらは一般的なクラスとどう違うのですか?
と PEP 557のデータクラスは、Pythonの標準ライブラリに導入されています。 彼らは @dataclassデコレーター「デフォルトで変更可能な名前付きタプル」であると想定されていますが、これが実際に何を意味するのか、またそれらが一般的なクラスとどのように異なるのかを理解できません。 正確にpythonデータクラスとは何ですか、いつそれらを使用するのが最適ですか?

1
OrderedDictはPython3.7で冗長になりますか?
以下からのPython 3.7のchangelog: dictオブジェクトの挿入順序の保持の性質は、Python言語仕様の公式部分であると宣言されています。 これはOrderedDict冗長になることを意味しますか?私が考えることができる唯一の用途は、通常の辞書の挿入順序を保持しない古いバージョンのPythonとの下位互換性を維持することです。

8
Python3.7データクラスでのクラス継承
私は現在、Python3.7で導入された新しいデータクラス構造を試してみています。私は現在、親クラスの継承をしようとして立ち往生しています。子クラスのboolパラメーターが他のパラメーターの前に渡されるように、現在のアプローチでは引数の順序が間違っているようです。これにより、タイプエラーが発生しています。 from dataclasses import dataclass @dataclass class Parent: name: str age: int ugly: bool = False def print_name(self): print(self.name) def print_age(self): print(self.age) def print_id(self): print(f'The Name is {self.name} and {self.name} is {self.age} year old') @dataclass class Child(Parent): school: str ugly: bool = True jack = Parent('jack snr', 32, ugly=True) jack_son …

6
anacondaを使用してPython3.7に更新する
Python 3.7アルファ版がリリースされましたが、Anacondaを使用してPython 3.7に更新する方法に関する投稿を見つけることができませんでした-おそらく彼らは公式リリースを待つのでしょうか?助言がありますか?

9
更新エラー「モジュール」オブジェクトが呼び出し不可能になった後、pipが機能しなくなった
pipの更新後、pipは完全に機能しなくなりました。 Z:\>pip install matplotlib Traceback (most recent call last): File "c:\program files\python37\lib\runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "c:\program files\python37\lib\runpy.py", line 85, in _run_code exec(code, run_globals) File "C:\Program Files\Python37\Scripts\pip.exe\__main__.py", line 9, in <module> TypeError: 'module' object is not callable 何か助けてください? 編集:Windows 10で作業しています

2
TypeError:関数構築コード外の操作にグラフテンソルが渡されています
次の例外が発生します TypeError: An op outside of the function building code is being passed a "Graph" tensor. It is possible to have Graph tensors leak out of the function building context by including a tf.init_scope in your function building code. For example, the following function will fail: @tf.function def has_init_scope(): my_constant …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.