如何在字符串中间剪切几个字符?

How do I cut out a few characters in the middle of a string? (Python 2.7.8)

我需要取一个6位有效数字,使其成为3位有效数字,但字符串的结构如下:

字符串1=1.00466E+15

我需要

字符串2=1.00e+15

如何从这个字符串中删除第5、第6和第7个字符?


string2 = string1[:4] + string1[7:]

请参见:https://docs.python.org/3/tutorial/introduction.html strings-特别是"切片"