摘要:
1.`"""" """`三引号+__doc__: # 三引号的使用 + __doc__ def in_fridge(): """this is a function to see fridge has to be a doctionary fir is in the string wanted_fo 阅读全文
摘要:
1.mysql查询表大小行数: ①.查询表rows use information_schema; select table_name,table_rows from tables where TABLE_SCHEMA = 'koaladb' order by table_rows desc; Vi 阅读全文
摘要:
1.python中条件判断语句:if-elif-else **python中没有:switch..case语句 a,b=7,-1 print(' ') while a!=b: x = int(input("请输入一个数字:")) if x == a: print('输入正确!') elif x > 阅读全文