1+2+3+4×5-6+7+8×9=99
1+2-3+4+5×6+7×8+9=99
1+2-3+4+5×6-7+8×9=99
1×2+3+4+5+6+7+8×9=99
1×2+3-4×5+6×7+8×9=99
1×2-3×4+5×6+7+8×9=99
1×2-3×4-5+6×7+8×9=99
1×2×3+4×5-6+7+8×9=99
1×2×3×4×5÷6+7+8×9=99
1÷2÷3×4×5×6+7+8×9=99
不会python,这是用其它语言编程枚举得到的。
供参考。
1、添加字符实现添加字符或字符串
如果想在字符串 土堆 后面或者前面添加 碎念 字符串。
可以使用 + 号实现字符串的连接,或者使用方法 .join() 来连接字符串。
.join() 方法
官方是这样介绍的:
S.join(iterable) ->str Return a string which is the concatenation of the strings in the iterable. The separator between elements is S.
.join() 方法中传递的参数需要是可迭代的,另外,是使用S作为可迭代参数的分割。
通过以上几点,我们可以这样理解:
a.join(b) ,比如 b=123456,是可以迭代的。这个方法的作用就是把a插入到b中每个字符中。1a2a3a4a5a6就是输出。
''.join([a, b]) 是比较常见的用法。 '' 是空字符,意味着在a, b之间加入空字符,也就是将a, b进行了连接。
实现添加
a = '撒旦士大试试夫'
b = '土堆试夫'
print(a + b)print(''.join([a, b]))
2、插入字符实现
首先将字符串转换为列表,然后使用列表的 .insert() 方法来插入字符。
.insert() 用法
L.insert(index, object) -- insert object before index
注意: .insert() 方法不返回参数,直接在对 L 进行修改。
将对象插入到指定位置的前面。比如 ['a', 'b'].insert(1, 'c') ,那么最后的输出就是`['a', 'c', 'b']。
这个方法是属于列表的方法。
实现插入
a = '撒旦士大试试夫'
b = '土堆'str_list = list(a)str_list.insert(4, b)a_b = ''.join(str_list)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)