python字符串

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python字符串相关的知识,希望对你有一定的参考价值。

  • """strl = "hello world "
  • str2 = "nice to me you"
  • str3 = strl + str2 #字符串的拼接 不允许字符串和数字型直接拼接
  • print(str3)
  • #name = "POSER"
  • #print(str.lower(name)) #转换为小写
  • #print(name.lower())
  • #print(str.upper(name)) #转换为大写
  • print(name.upper())
  • name = "posePD"
  • print(str.capitalize(name)) #字符串首字母大写
  • name = "my name is adrew, i have dream"
  • print(name.title()) #首个单词大写
  • print("abcABC".swapcase()) #大小写互换
  • """
    #格式化字符串
  • name = input("名字: ")

  • age = input("年龄: ")

  • height = input("身高: ")

  • str1 = "我的名字{0},今年{1}岁,身高{2}".format(name,age,height)

  • print(str1)

  • 别名

  • str1 = "我的名字{p1},今年{p2}岁,身高{p3}".format(p1=name,p2=age,p3=height)

  • **
  • #格式化数字
  • print(format(123.3442,‘0.2f‘) ) #小数保留两位

  • print(format(1233442334342,‘,‘) ) #小数保留千分位一般用于货币

  • account = "238923"

  • amt = 19283884400

  • str1 = "请你想{}账户转账{:0,.3f}元".format(account,amt)

  • print(str1)

  • print(type(str1))

以上是关于python字符串的主要内容,如果未能解决你的问题,请参考以下文章

Python学习 Day5 Python3 字符串

python008 Python3 字符串

Python字符串

Python 字符串

Python --------字符串

Python 字符串