码迷,mamicode.com
首页 > 编程语言 > 详细

python 中的内置函数

时间:2019-09-26 23:51:47      阅读:141      评论:0      收藏:0      [点我收藏+]

标签: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)
  

python 中的内置函数

标签:NPU   参数   code   input   color   输出   int   转换   div   

原文地址:https://www.cnblogs.com/auto-desk/p/11594890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!