我怎样才能改变这条道路

时间:2016-08-25 22:24:05

标签: javascript

我需要更改路径,我想将文件保存在C:\ NEW \ archivo.txt中 我使用过ActiveXObject但这个插件在Chrome中不起作用..

# NOTE: You may use this function only for integer numbers
# k is num, n is the 'n' in nth root
def iroot(k, n):
    u, s = n, n+1
    while u < s:
        s = u
        t = (k-1) * s + n // pow(s, k-1)
        u = t // k
    return s

0 个答案:

没有答案
相关问题