傻強

  • 傻強 wrote a new post on the site HKD Zone 6 年, 11 月前

    針對 Mac 的原生設計

    Visual Studio for Mac 將您所喜愛的開發人員生產力工具整合到 Mac。 此體驗為最佳化 Mac 開發人員工作流程,已經過謹慎的精心打造。

    有效率地共同作業

    在任何提供者所裝載的 Git 存放庫 (包括 GitHub […]

  • 傻強 wrote a new post on the site HKD Zone 7 年前

    >>> np.sum([0.5, 1.5])
    2.0
    >>> np.sum([0.5, 0.7, 0.2, 1.5], dtype=np.int32)
    1
    >>> np.sum([[0, 1], [0, 5]])
    6
    >>> np.sum([[0, 1], [0, 5]], axis=0)
    array([0, 6])
    >>> np.sum([[0, 1], [0, 5]], […]