- 博客(107)
- 收藏
- 关注
原创 Object-Oriented Programming in Python
Object-Oriented Programming in Python
2022-06-18 00:13:55
227
原创 python list slice
As for 2-d list, such as matrix:import numpy as npa=np.arange(9).reshape(3,3)a :array([[0, 1, 2], [3, 4, 5], [6, 7, 8]])a[1]:array([3, 4, 5])a[1,:]:array([3, 4, 5])a[1,2]:5a[:,1]:array([1, 4, 7])a[1:,1]:array([4, 7])a[:2
2020-06-12 18:35:14
241
原创 macbook安装llvm
安装过程笔记波折,做下记录:安装安装的话直接brew来安装:brew install llvm可以通过brew info llvm 来查看llvm的情况测试测试用例可以参考https://blog.youkuaiyun.com/qq_31157999/article/details/78906982这个文章注意其中clang -03 -emit-llvm test.c -c -o test.bc命令-03的这个参数不同电脑是不一样的,目前最新的clang应该是到-10了clang和-03
2020-05-21 12:06:59
750
原创 python中%的使用
sql = "insert into demo_t(id, title) VALUES ('%d', '%s')"data = (12, 'stu')print(sql)输出:insert into demo_t(id, title) VALUES (’%d’, ‘%s’)sql = "insert into demo_t(id, title) VALUES ('%d', '%s')"...
2020-05-08 16:30:43
1357
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人