- 博客(7)
- 收藏
- 关注
原创 C++输入输出
C++输入输出 char ch = getchar() 读取一个字符,包括换行、空格 putchar(ch) 输出一个字符,包含换行、空格 scanf("%d", &a) 忽略换行、空格 printf("%d\n", a) cin>>a 忽略换行、空格 cout<<a cin.getline(char * buff, int buff_size) 读取指定大小,包...
2020-03-21 18:21:14 234
原创 Python核心编程 - 网络编程
服务器 from socket import * from time import ctime # TCP时间戳 HOST = '' PORT = 21567 BUFF_SIZE = 1024 ADDR = (HOST, PORT) tcpSocket = socket(AF_INET, SOCK_STREAM) tcpSocket.bind(ADDR) tcpSocket.listen(...
2020-02-05 00:03:54 222
原创 Python核心编程 - 正则表达式
import re pattern = '([A-Z]*)([0-9]+)' re.compile(pattern) print(re.match(pattern, 'AAAKJSI899')) # .group() print(re.match(pattern, 'AAAKJSI899').group(2)) print(re.search(pattern, 'AAAKJSI899')) ...
2020-02-01 19:52:06 165
原创 C++基础 (一)
#include<climits> #include<cstdio> #include<iostream> #include<vector> #include<array> #include<string> #include<ctime> using namespace std; struct MyStruct...
2020-01-31 16:33:25 132
原创 Python自动化开发实战 - Selenium基础
from selenium import webdriver url = 'https://www.baidu.com/' path = 'D:\\Users\\panjicai\\Anaconda3\\chromedriver.exe' browser = webdriver.Chrome(executable_path=path) # browser.get(url) url = 'htt...
2020-01-28 21:40:33 451
原创 Python自动化开发实践 - Python基础
浅拷贝 深拷贝 import copy list1 = [1,2,3,4] list2 = list1 #list2 = copy.copy(list1) 浅拷贝 list3 = copy.deepcopy(list1) #深拷贝 list1[2] = 5 print(list1) #1 2 5 4 print(list2) #1 2 5 4 print(list3) #1 2 ...
2020-01-09 17:59:34 248
原创 C++标准程序库
typename 是表明后面的为类型名的标识符,类内不以typename修饰的类型名,均视为一个值。 class Example { typedef int SubType; //... }; typename Example::SubType * ptr; //返回int型指针 Example::SubType * ptr; //解释为相乘 //typename 替换template...
2020-01-06 16:20:25 578
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人