python 中的内置函数
Posted auto-desk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 中的内置函数相关的知识,希望对你有一定的参考价值。
1.输出函数 print()
1 print("hello world!")
2.输入函数 input()
1 a = input() 2 hello world 3 print (a)
3.chr()函数
该函数返回整形参数值所对应的Unicode字符的字符串
1 print(chr(916)) 2 print([chr(i) for i in range(870,8719)])
4.ord()函数
返回单个字符的ASCⅡ值或者unicode 的值
1 print((功)) 2 print((python))
5.upper()函数
将所有字符中的小写字母转换成大写字母
1 a = "hello world!" 2 b = a.upper() 3 print(b)
6.low()函数
将所有字符中的大写字母转换成小写字母
1 a = "HELLO World!" 2 b = a.low() 3 print(b)
以上是关于python 中的内置函数的主要内容,如果未能解决你的问题,请参考以下文章