标签: arrays string python-3.x find
假设我们具有以下设置:
Recipe: ... Ingredients: ... (instructions) Recipe: ... Ingredients: ... (instructions) etc.
,您将这些解析为一个数组,每个数组分别包含每一行,例如[ 'Recipe: ...', 'Ingredients ...' etc. ]
[ 'Recipe: ...', 'Ingredients ...' etc. ]
获取特定食谱说明的最佳方法是什么?换句话说,在确保我们拥有正确配方的同时,在两个字符串之间获取内容的最佳方法是什么?