Python 字符串大小写转换
Python 3 教程
· 2019-02-12 15:12:13
以下代码演示了如何将字符串转换为大写字母,或者将字符串转为小写字母等:
# Filename : test.py # author by : www.codercto.com str = "www.codercto.com" print(str.upper()) # 把所有字符中的小写字母转换成大写字母 print(str.lower()) # 把所有字符中的大写字母转换成小写字母 print(str.capitalize()) # 把第一个字母转化为大写字母,其余小写 print(str.title()) # 把每个单词的第一个字母转化为大写,其余小写
执行以上代码输出结果为:
WWW.CODERCTO.COM www.codercto.com Www.codercto.com Www.Codercto.Com
点击查看所有 Python 3 教程 文章: https://www.codercto.com/courses/l/10.html
Introduction to Semi-Supervised Learning
Xiaojin Zhu、Andrew B. Goldberg / Morgan and Claypool Publishers / 2009-6-29 / USD 40.00
Semi-supervised learning is a learning paradigm concerned with the study of how computers and natural systems such as humans learn in the presence of both labeled and unlabeled data. Traditionally, le......一起来看看 《Introduction to Semi-Supervised Learning》 这本书的介绍吧!