【发布时间】:2017-06-28 16:37:57
【问题描述】:
我有一个这样的字符串:
st = "The most basic data structure in Python is the sequence * Each element of a sequence is assigned a number * its position or index * The first index is zero * the second index is one * and so forth *"
我想像这样拆分到列表中:
ls =["The most basic data structure in Python is the sequence","Each element of a sequence is assigned a number","its position or index",.....]
我刚开始python,请帮帮我
【问题讨论】: