# Python-for-Data-Analysis-Practice **Repository Path**: greggory_wang/Python-for-Data-Analysis-Practice ## Basic Information - **Project Name**: Python-for-Data-Analysis-Practice - **Description**: 利用Python进行数据分析学习及练习 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-10-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Python for Data Analysis Practice 19-2-14 创立文件,启动学习 即: ttps://api.github.com/repos/{你的名字+你仓库的全名} 直接在浏览器地址栏输入https://api.github.com/repos/organization/repository 其中organization替换为项目的所有者(组织),repository替换为项目的名称` 返回的页面是描述这个项目的JSON数据,其中的size指的就是项目的大小,单位为kB(千字节) import os print("1111") print (os.getcwd())#获得当前目录 print (os.path.abspath('.'))#获得当前工作目录 print (os.path.abspath('..'))#获得当前工作目录的父目录 print (os.path.abspath(os.curdir))#获得当前工作目录