首先,我们需要创建一个f-string代码,其中包含需要插入的变量。假设我们要将两个变量name和age插入到字符串中,代码如下所示: name="Alice"age=25f_string_code=f"My name is{name}, and I am{age}years old." 1. 2. 3. 4. 在这个例子中,我们创建了一个f-string代码,其中name和age是变量,它们将被插入...
若是指定了分隔符,则空格就不会被当成分隔 符,中间的空格项不会忽略). The sep argument may consist of multiple characters (for example, '1<>2<>3'.split('<>') returns ['1', '2', '3'])(支持多个字符组成字符串作为分隔 符). Splitting an empty string with a specified separator returns [...