更新表数据: update table_name set xxx=xxx where condition; 增加字段: alter table table_name add field type other; e.g: ) '; 删除字段: ALTER TABLE table_name DROP field_name; 增加删除索引: # 增加 alter table 表名 add index 索引名 (字段名1[,字段名2 …]); # 删除 alter table 表名 drop index
用while循环打印字符串 #if i in s: # print ( i ) s='nanfjkhndaol' index = 0 while 1 : print (s[index]) index+=1 if index == len(s) : break 统计输入字符串中的数字 s = input ('请输入:’) count = 0 for i in s: if i . isdigit(): count + = 1 print(count) 增删改查命令 1.增 append( ) 增加