python中while true的用法
无限循环 如果条件判断语句永远为 true,循环将会无限的执行下去 比较常见while(true)....break结构判断
怎么提取空格分开的字符串
s=‘hello! my word’ print s.split() #输出结果为[‘hello!’, ‘my’, ‘word’]