91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
焦作市| 资兴市| 北票市| 麦盖提县| 康定县| 龙山县| 赤峰市| 收藏| 黄石市| 东宁县| 哈密市| 安乡县| 通州区| 昭平县| 西城区| 睢宁县| 嘉黎县| 宁远县| 剑川县| 米泉市| 台北县| 北京市| 巩留县| 邢台县| 宁蒗| 金平| 岐山县| 定结县| 蕉岭县| 松原市| 抚顺县| 德令哈市| 平定县| 酒泉市| 镇巴县| 望都县| 吉林市| 定安县| 滕州市| 康乐县| 大石桥市|