0
A
回答
1
聽起來像是你不使用SCP正確 - 看https://unix.stackexchange.com/questions/188285/how-to-copy-a-file-from-a-remote-server-to-a-local-machine
根據什麼遠程機器使用,您可能有運行腳本,只是得到的結果;這可能會更有效率。
你對你想要執行的實際操作非常模糊;如果你想快速處理大量的數據NumPy
可能真的有幫助 - 像
import numpy as np
FILES = ["a.dat", "b.dat"] # we assume that all files are the same length
data = np.stack(
(np.fromfile(f, dtype=np.uint32) for f in FILES), # endian-ness may be an issue!
axis=1
)
# applying a Python function
def myfunc(row):
return min(row)
result = np.apply_along_axis(myfunc, 1, data)
# but using a numpy function directly would be better!
result = np.min(data, axis=1)
相關問題
- 1. python循環遍歷行數
- 2. Python循環遍歷列表
- 3. 簡單的Python循環遍歷字典
- 4. 在jQuery中循環遍歷
- 5. 在ruby中循環遍歷
- 6. 在jQuery中循環遍歷?
- 7. 在PowerBuilder中循環遍歷字符串
- 8. 在PL/SQL中循環遍歷字
- 9. 循環遍歷Python中的列表
- 10. 在整數中循環遍歷,ruby
- 11. 在bash中循環遍歷數組
- 12. 在Ruby/Rails中循環遍歷數組
- 13. 一次循環遍歷多個數字
- 14. 循環遍歷循環並返回數組中的字符串
- 15. 循環遍歷isEmpty
- 16. 循環遍歷天
- 17. 循環遍歷LinkedList
- 18. 循環遍歷pd.dataframe
- 19. 的Python for循環遍歷列表
- 20. python beautifulsoup循環遍歷表格行
- 21. Python BeautifulSoup - 循環遍歷多個頁面
- 22. 循環遍歷多個列表 - Python
- 23. 如何在PHP中循環遍歷數組的循環?
- 24. 在搜索後循環遍歷數組
- 25. 循環遍歷數組以獲取字符串中的數字
- 26. 通過Python中的循環遍歷鍵和值到字典3.3
- 27. 循環遍歷python中的每個字符
- 28. 循環遍歷for循環和If/Else
- 29. 未循環遍歷循環 - javascript
- 30. VBA循環遍歷嵌套for循環
你到目前爲止嘗試過什麼? –
你對遠程機器有什麼樣的訪問權限?這是在網絡共享上,還是通過http/ftp,或者你可以SSH? –
你的Python腳本需要訪問這些文件。 https://stackoverflow.com/questions/1035340/reading-binary-file-and-looping-over-each-byte – RPGillespie