Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
単純なパターンに一致するホストの数を数えたいとしましょう。例えば:
host1.example.com host2.example.com ... host42.example.com
これらが42あることを事前に知りません。私がやりたいことは次のようなものです:
answers = dns.resolver.query('host*.example.com', 'A')
次に、カウントの回答の長さを取得するか、実際のホスト名の回答を反復処理できます。
ありがとう、
グレン