码迷,mamicode.com
首页 >  
搜索关键字:字母转    ( 323个结果
NumPy字符串速查表
字符串 | 函数 | 描述| | | :| | add() |对两个数组的逐个字符串元素进行连接 | |multiply() |返回按元素多重连接后的字符串 |center() |居中字符串 |capitalize() |将字符串第一个字母转换为大写 |title() |将字符串的每个单词的第一个字 ...
分类:其他好文   时间:2020-01-20 22:41:29    阅读次数:87
C++ STL map A1071 Speech Patterns(25) (注意如何从字符串里 分割出单词,注意读取整行带空格的string 需要使用 getlint(cin,str) 函数)
#include <bits/stdc++.h> #include<math.h> #include <string> using namespace std; const int maxn = 40010;//最大学生人数 bool check(char c){ if(c >= '0' && c< ...
分类:编程语言   时间:2020-01-17 00:23:47    阅读次数:155
python 读取 Excel
转:https://www.cnblogs.com/crazymagic/articles/9752287.html Python操控Excel之读取 我们在python中引入openpyxl模块来操控excel文件。一个以.xlsx为扩张名的excel文件打开后叫工作簿workbook,每个工作簿 ...
分类:编程语言   时间:2020-01-09 00:53:38    阅读次数:111
实验七
Part 1 1. // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen( ...
分类:其他好文   时间:2020-01-01 17:09:34    阅读次数:74
实验七
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:其他好文   时间:2020-01-01 10:06:46    阅读次数:77
实验七
part1 // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("fil ...
分类:其他好文   时间:2020-01-01 10:03:05    阅读次数:90
实验七
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:其他好文   时间:2020-01-01 09:24:49    阅读次数:62
实验7
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:其他好文   时间:2019-12-30 00:22:18    阅读次数:61
实验7
1.1: // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file ...
分类:其他好文   时间:2019-12-28 23:11:10    阅读次数:148
mysql数据库汉字首字母简拼全拼
汉字提取首字母 转自 https://blog.csdn.net/u012998306/article/details/98867025 多谢老哥 fristPinyin : 此函数是将一个中文字符串的第一个汉字转成拼音字母 (例如:"李" l),包括特殊字符处理,可以进行动态添加 sql CREA ...
分类:数据库   时间:2019-12-28 19:00:52    阅读次数:125
323条   上一页 1 ... 3 4 5 6 7 ... 33 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!