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

Python入门学习

时间:2020-02-25 11:16:27      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:amp   print   单引号   lower   and   color   函数   bsp   lis   

  1.语法

  • 缩进来表示语句块
  • 注释:单行用#   多行用"""  注释内容  “”“ ,就是前后三个双引号。

  2.变量

  • 变量不需要声明,直接可以赋值。
  • 数字主要有  int 和float两种,可以通过 print( type(变量名) )  查看变量类型。
  • 强制转化用  int() float() str()
  • 字符串:用双引号或单引号引起来

            技术图片技术图片

 

    一些函数:len()  upper() lower() strip() split()

    技术图片 技术图片

  3.部分 运算符

  /  Division 

  // Floor division  

  and 相当于C的  &&   

  or  相当于C的  ||

  not  相当于C的!

  还有特殊的属于运算符   in  和  not in

   4.测试LIST

  技术图片

 

   技术图片技术图片

 

Python入门学习

标签:amp   print   单引号   lower   and   color   函数   bsp   lis   

原文地址:https://www.cnblogs.com/SunChuangYu/p/12360550.html

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