我正在尝试删除代码输出后出现的空格。我尝试使用.rstrip,但似乎不起作用。
编码为:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#B94765">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/iv_cross"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_gravity="end"
android:src="@drawable/ic_close_black_24dp"/>
</LinearLayout>
<com.steelkiwi.cropiwa.CropIwaView
android:id="@+id/crop_view"
android:layout_width="match_parent"
android:layout_height="match_parent" /></LinearLayout>
除了在末尾有很多额外的空格外,它还能产生正确的编码。有办法解决这个问题吗?
输出产生:
msg = Tjghksikdsiiireskfafslweicfnareodorffqecproerdtre
var1 = 0
var2 = 1
for i in range(len(msg)):
print(msg[var1:var2], end=' ')
var1 = int(var1) + 3
var2 = int(var2) + 3
像它应该的那样,但是它之后添加了很多空格。请帮忙。
答案 0 :(得分:2)
多余的空格是因为您尝试打印每第三个字符,但是对于每个字符重复一次,您可以将for循环更改为此:
for i in range( int(len(msg) /3) +1):
答案 1 :(得分:0)
有人用切片字符串删除了答案。我有一点改进。
msg = 'Tjghksikdsiiireskfafslweicfnareodorffqecproerdtre'
print(" ".join([c for c in msg[::3]]))