摘要:
string-->int 1、10进制string转化为int int('12') 2、16进制string转化为int int('12', 16) int-->string 1、int转化为10进制string str(18) 2、int转化为16进制string hex(18) 考虑,为什么没有 阅读全文
摘要:
ORM、SQLAchemy orm英文全称object relational mapping,就是对象映射关系程序,简单来说就是类似python这种面向对象的程序来说一切皆对象,但是使用的数据库却都是关系型的,为了保证一致的使用习惯,通过orm将编程语言的对象模型和数据库的关系模型建立映射关系,这样 阅读全文
摘要:
ref:https://www.jianshu.com/p/e29611244810 https://www.cnblogs.com/qq78292959/p/3467937.html https://www.cnblogs.com/diaosicai/p/6419833.html https:// 阅读全文