标签:NPU 参数 code input color 输出 int 转换 div
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)
标签:NPU 参数 code input color 输出 int 转换 div
原文地址:https://www.cnblogs.com/auto-desk/p/11594890.html