from sqlalchemy import create_engine
import pandas as pd
engine = create_engine('mysql+pymysql://root:981221@localhost/testdb?charset=utf8mb4')
detail = pd.read_sql_table('meal_order_detail1',con=engine)
order = pd.read_table('D:/pandas/meal_order_info.csv',sep=',',encoding='gbk')
user = pd.read_excel('D:/pandas/users.xlsx')print('订单的详情表的维度:',detail.ndim)print('订单信息表的维度:',order.ndim)print('客户信息表的维度:',user.ndim)
从零开始 Spring Boot 41:事件 图源:简书 (jianshu.com)
Spring 实现了一个简单、实用的事件框架,利用它我们可以在多个组件之间进行松耦合式的通信。
简单示例
让我们从一个简单的示例开始:
public record Email(String addr…
VBA介绍:
Visual Basic for Applications(VBA)是 VisualBasic 的一种宏语言,是微软开发出来在其桌面应用程序中执行通用的自动化(OLE)任务的编程语言。主要能用来扩展 Windows 的应用程序功能,特别是Microsoft Office…