学习大数据PaddlePaddle Jupyter NoteBook Back to Home

PaddlePaddle Jupyter NoteBook

Created2023-06-26|Updated2023-06-26|Python
|Post Views:

网址

https://aistudio.baidu.com/aistudio/projectoverview/public?topic=1

创建项目

64448ee191334e69db69ddd6b5640e6

5686820b55318c0485f6fadb752b15e

ac2c3bc45f43076f80e34300861cb6a

7cc7cce74bcd4e43c2dd2591db8f65f

84c0858f643700b87efc4e70165cb0a

启动环境

c52639c89e7d9709a7949037af8b62d

b18bbbc76328115bc695c1bc0e3fe53

0d8946fb6af02af0f2158ad07fd1eba

Hello World

51e6f6f42cde22124657134bc2b2a72

Author: QuZheng
Link: https://www.studybigdata.com/Python/PaddlePaddle_JupyterNotebook/
Copyright Notice: All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.
Jpyuter NotebookPython在线编程环境
Previous
Python文件操作案例
文件操作练习背景当前4-3目录中存放了一个Markdown文档和存放相关图片的pic目录,目录结构如下: 12345678910114-3:│-实验手册_5090_1656_18231.md│└─pic 1698495425238.png a.png clip_image004.png clip_image006.png c.jpg clip_image010.png sdfs.png 需求可以看到markdown 文档中插入了较多的图片,图片名字命名不规范,需要根据图片在文档中出现的先后顺序对pic目录中的图片进行重命名。 代码具体代码如下: 123456789101112131415161718192021222324252627282930313233343536373839404142434445import osimport rerootdir = os.chdir(f"D:\数据预处理\最终版\最终版-图片名称修正")os.chdir("4...
Next
Web Framework
Django官网案例https://docs.djangoproject.com/zh-hans/4.2/intro/ 投票程序自定义一个投票问题: 自定义一个问题Question,如:为他/投一票(仅供娱乐) 将学生信息表.xlsx导入作为Choice 1234567891011121314151617181920212223242526import sqlite3import pandas as pd# 链接数据库conn = sqlite3.connect("db.sqlite3")cursor = conn.cursor()# 查询数据cursor.execute('select * from polls_choice')students = pd.read_excel("20-3.xlsx") # 读取学生信息表students_list = []for stu in students["姓名"]: #对姓名列操作,组合成三元组 (姓名,投票数,所属问题ID) rec...
avatar
QuZheng
Articles
118
Tags
84
Categories
26
Follow Me
Announcement
This is my Blog
Contents
  1. 1. 网址
  2. 2. 创建项目
  3. 3. 启动环境
  4. 4. Hello World
Recent Posts
Kafka2026-03-09
第2章 数仓基础环境搭建2026-03-09
第1章 教育大数据分析项目介绍2026-03-09
SSH无密登录配置2026-03-08
Python2023-11-19
© 2025 - 2026 By QuZhengFramework Hexo 8.1.1|Theme Butterfly 5.5.4