丰富超短裙

文章
6
资源
0
加入时间
3年0月9天

python_切分日期特征

python_切分日期特征7.4 날짜 데이터를 여러 특성으로 나누기# 加载库import pandas as pd​# 데이터프레임을 만듭니다.dataframe = pd.DataFrame()​# 다섯 개의 날짜를 만듭니다.dataframe['date'] = pd.date_range('1/1/2001', periods=150, freq='W')​...

C语言遍历字符串的两种方式(代码)

一.使用指针#include <stdio.h>#include <string.h>int main(){ char *s="You are beautiful!"; for(int i=0;i<strlen(s);i++) { printf("%c",s[i]); } return 0;}二.字符数组的方式#include <stdio.