我需要更改路径,我想将文件保存在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