中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

python去除空格的方法有哪些

小億
84
2024-04-01 21:01:09
欄目: 編程語言

  1. 使用strip()方法去除字符串兩端的空格:
s = "  hello world  "
print(s.strip())
# Output: "hello world"
  1. 使用replace()方法替換空格:
s = "  hello world  "
print(s.replace(" ", ""))
# Output: "helloworld"
  1. 使用join()方法和split()方法去除所有空格:
s = "  hello world  "
print("".join(s.split()))
# Output: "helloworld"
  1. 使用正則表達式re.sub()去除所有空格:
import re
s = "  hello world  "
print(re.sub(r"\s+", "", s))
# Output: "helloworld"

0
开封县| 古蔺县| 开江县| 新宾| 瑞丽市| 乌恰县| 叶城县| 南阳市| 利辛县| 潼关县| 建平县| 遵义市| 孝昌县| 丰宁| 通化县| 惠水县| 青河县| 星子县| 从化市| 石景山区| 高邮市| 北流市| 察隅县| 牟定县| 紫阳县| 武鸣县| 石阡县| 永丰县| 孙吴县| 泗阳县| 台南县| 岳阳市| 鄂伦春自治旗| 吕梁市| 黔江区| 调兵山市| 永年县| 徐闻县| 准格尔旗| 苍梧县| 博客|