Anders and Briegel in Python
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

12 satır
200B

  1. import chp
  2. import numpy as np
  3. chp.init(5)
  4. chp.act_hadamard(0)
  5. chp.act_cnot(0, 1)
  6. chp.act_phase(0)
  7. for key, value in chp.get_ket().items():
  8. print bin(key), np.exp(1j * value * np.pi/2).round(2)