摘要:
xadmin是Django的第三方扩展,可是使Django的admin站点使用更方便。 文档:https://xadmin.readthedocs.io/en/latest/index.html 安装 pip install https://codeload.github.com/sshwsfc/x 阅读全文
摘要:
1 字符串操作 1.字符串的索引取值: 字符串[index] # 正向取值从0编号,反向取值从-1编号 res = '12345' print(res[0]) # 1 res = '1,2 ,3, 4, 5' print(res[0]) # 1 res = '1,2 ,3, 4, 5' print( 阅读全文