meage = "hello world" ?#定义 print ? ?(meage)#有空格也不会影响输出 message ="hello world!" print(meage)#注意中文状态下的括号无法使用 print(meage.title()) print(message.upper()) print(message.lower()) print("hello "+meage+"!")#在py程序中可以使用空格,若没有空格前后就连起来了。 print("hello"+meage.upper()+"!")# name=meage+message#连接两个变量需要使用+,但是如果想不让字符堆一块就要再+" "+ print(name.title())#修改字符串的大小写可以直接针对变量 print("I LOVE PYTHON".title())#修改字符串的大小写可以不定义变量,直接应用 print("\tpython")#在字符串中添加制表符\t,py直接默认把\t识别出来了 print("I\nlove\nPython".title())#换行符可以和之前的合用 print("\ti\t\nlove\n\tpython")#为了格式好看,要先换行然后在使用制表符,否则制表符作用在上一行
wor1="hello" wor2="world" print(wor1+wor2) wor=wor1+" "+wor2 print(wor,wor1)#逗号也可以 print(wor.title()) print(wor.upper()) print(wor.lower())#除了字符串外,也可以用变量 print("\nwor")#不能用在变量上,只能用在字符串中 favorite_language=" python " print(favorite_language) print(favorite_language.rstrip())#删除掉变量右边的空格,但是这只是暂时的 favorite_language=favorite_language.rstrip()#将变量重置后,后面的就变过来了 print(favorite_language) print(favorite_language.lstrip())#删除left的空格 print(favorite_language.strip())#删除所有的空格 famous_person=" einstain " message1="would you like to learn some Python today" message2="a person who never made a mistake never tried anything new" print("Hello "+famous_person.title()+","+message1+"?")#如何输出双引号? print(famous_person.strip().title()+"\tonce said,"+message2+".") print(famous_person.title().strip()+"\nonce said".upper()+message2+".") #对于strip和title先后顺序无所谓,这些方法可以用在变量后面也可以用在字符串后面
|