简体   繁体   English

如何将 excel 和/或 pkl 文件导入 iPad pro Juno 应用程序?

[英]How to import excel and/or pkl files onto iPad pro Juno app?

I'm learning to code Python on iPad.我正在学习在 iPad 上编码 Python。 I'm using Juno.我用的是朱诺。 I was wondering if there's any way to import excel and pickle files onto Juno so that I can do real data analysis on iPad without having to switch to a computer.我想知道是否有任何方法可以将 excel 和 pickle 文件导入 Juno,这样我就可以对 iPad 进行真实数据分析,而无需切换到计算机。

Sure, you can.你当然可以。 The only restriction of iOS is that Juno can access only its own folder on the iPad. iOS 的唯一限制是 Juno 只能访问 iPad 上自己的文件夹。 So you have to save the excel or csv file inside iPad's own Juno folder (I usually make a subfolder for each project) and then you can normally import the Excel sheet with因此,您必须将 excel 或 csv 文件保存在 iPad 自己的 Juno 文件夹中(我通常为每个项目创建一个子文件夹),然后您通常可以使用工作表导入 Excel

import numpy as np
import pandas as pd
df = pd.read_excel(r'yourfile.xlsx')

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM