The Wayback Machine - https://web.archive.org/web/20210312082204/https://github.com/topics/sdk
Skip to content
#

SDK

The term SDK stands for software development kit. It is a collection of tools that allow developers to build software for specific platforms. An SDK can consist of (but is not limited to) a compiler, debugger, libraries, documentation, and code samples.

Here are 4,977 public repositories matching this topic...

微信公众平台SDK Senparc.Weixin for C#,支持.NET Framework及.NET Core。已支持微信公众号、小程序、小游戏、企业号、企业微信、开放平台、微信支付、JSSDK、微信周边等全平台。 WeChat SDK for C#.
  • Updated Mar 4, 2021
  • C#
1ucian0
1ucian0 commented Mar 8, 2021

Take the following example:

from qiskit import QuantumCircuit
from qiskit.circuit.library import ZGate

qc = QuantumCircuit(3)
qc.append(ZGate().control(2, ctrl_state='01'), range(3))

The text and latex drawer outputs are the following:

qc.draw('text')

q_0: ─■─
      │ 
q_1: ─o─
      │ 
q_2: ─■─
qc.draw('latex')

![image](https://

Wikipedia
Wikipedia