- 博客(7)
- 收藏
- 关注
原创 集合 python 个人学习笔记
集合一 创建集合集合没有顺序集合不能保存重复元素创建空集合只能用set(),因为用{}创建的数据类型为字典s1 = {10,20,30,40,50}#集合没有顺序print(s1)s2 = {10,10,20}#集合不能保存重复元素print(s2)s3 = set('abcdefg')print(s3)s4 = set()print(s4)print(type(s4))s5 = {}print(type(s5))二 增加数据s1 = {10,20,30,40
2020-07-21 21:03:13 197
原创 markdown 学习笔记1
Markdown学习笔记知识来源B站吴明课堂视频链接: https://www.bilibili.com/video/BV1jE411n7KJ?p=15此视频不完整,只有基础功能,完整版需要淘宝付费Markdown简介轻量级标记语言john gruberis开发支持Markdown的免费文本编辑器:TyporaTypora 结构类操作多级标题示例一级标题二级标题三级标题四级标题五级标题用法‘#’ x n + ’ ’ + 文本内容:n级标
2020-07-21 19:53:41 223
转载 c++ 获取汉字首字母
转载自百度原文链接 https://www.cnblogs.com/tangxin-blog/p/5540622.html#include <stdint.h>#include <stdio.h>#include <ctype.h>#include <string.h>bool between(uint32_t start,uint32...
2020-04-22 20:11:49 1776
原创 memset用法
memset()函数原型是extern void *memset(void *buffer, int c, int count)1.buffer是指针2.c是替换后的字符3.count 是替换的长度作用:memset(str,’\0’,strlen(str)); 把str中所有字符替换为’\0’,达到清空数组的作用...
2020-04-19 23:03:35 344
原创 easyx 图形界面输入中文
***********百度贴吧抄的代码,用了部分c和c++,输入的数据保存在string类型中#include <graphics.h>#include <conio.h>#include <windows.h>#include <string>#pragma comment(lib,"Imm32.lib")using namespac...
2020-04-12 07:58:07 9686 8
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人