日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python中upper函数有什么用_几个有用的python字符串函数(format,join,split,startwith,endwith,lower,upper)...

發布時間:2023/11/30 python 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python中upper函数有什么用_几个有用的python字符串函数(format,join,split,startwith,endwith,lower,upper)... 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

你需要知道的python字符串函數

format

字符串的format函數為非字符串對象嵌入字符串提供了一種非常強大的方法。在format方法中,字符串使用{}來代替一系列字符串的參數并規定格式。下面通過幾個例子來詳細解釋其用法

直接使用{}

apple_num = 10

print("I have {} apples".format(apple_num))

在{}中使用位置參數1

nums = [4, 5, 6]

msg = "Numbers: {0} {1} {0}".format(nums[0], nums[1])

print(msg)

# Numbers: 4 5 4

在{}中使用位置參數2

msg = "Numbers: {a} {c} ".format(a=5, b=6, c=7)

print(msg)

# Numbers: 5 7 6

{}中的更多格式

_ = [print("{}x{}={:<4}".format(y, x, x*y), end="\n" if x==y else "") for x in range(1, 10) for y in range(1, x+1)]

:<4表示左對齊占用四格位置,其結果為:

1x1=1

1x2=2 2x2=4

1x3=3 2x3=6 3x3=9

1x4=4 2x4=8 3x4=12 4x4=16

1x5=5 2x5=10 3x5=15 4x5=20 5x5=25

1x6=6 2x6=12 3x6=18 4x6=24 5x6=30 6x6=36

1x7=7 2x7=14 3x7=21 4x7=28 5x7=35 6x7=42 7x7=49

1x8=8 2x8=16 3x8=24 4x8=32 5x8=40 6x8=48 7x8=56 8x8=64

1x9=9 2x9=18 3x9=27 4x9=36 5x9=45 6x9=54 7x9=63 8x9=72 9x9=81

join()

joins a list of strings with another string as a separator

print(", ".join(["spam", "eggs", "ham"]))

# spam, eggs, ham

split

join的逆向

print("spam, eggs, ham".split(", "))

# ['spam', 'eggs', 'ham']

replace()

replaces one substring in a string with another

print("Hello ME".replace("ME", "world")

# Hello world

startwith, endwith

determine if there is a substring at the start and end of a string, respectively.

print("This is a sentence".startwith("This"))

# True

print("This is a sentence".endwith("sentence"))

# False

lower, upper

change the case of a string

print("hello world".upper())

# HELLO WORLD

print("HELLO WORLD".lower())

# hello world

總結

以上是生活随笔為你收集整理的python中upper函数有什么用_几个有用的python字符串函数(format,join,split,startwith,endwith,lower,upper)...的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。