美文网首页
python基本认识

python基本认识

作者: JingweiZhu1990 | 来源:发表于2018-10-30 15:21 被阅读0次
    #单行注释
    '''****************************
    �*********多行注释***************
    �*******************************�
    function: calc area of triangle�
    *******************************�'''
    print 'this program will calc the area of triangle'
    print "program start"
    print '''*********************�******************'''
    triA = input("pls input a of tri:")
    triH = input('pls input h of tri:')
    if triA >= 0 and triH >= 0:
        triArea = triA*triH/2.0
    
    print ("面积是%.2f"%(triArea))
    
    1. 注释
      用于提高代码可读性的辅助性文字,不被执行

    单行
    ''' 三个连续的单引号 ,多行注释

    1. 缩进
      一行代码开始前的空白区域,表达程序的格式框架,同一缩进的属于同一层级。
      一般用4个空格或1个TAB
    2. 变量
      程序中用于保存和表示数据的符号
      变量采用标识符(名字)来表示,可以用等号(=)向变量复制或者修改
      注意: 大小写敏感,首字符不能是数字、不与保留字相同
    3. 变量类型
      常见的有:整形(1、2、3),浮点型(1.0、2.1),字符串('hello'),复数(1+2j)
      可以用type(变量) 来查看
    4. 函数
      比如这里的input() print()
      根据输入参数产生不同输出的功能,类似与数学中的函数

    相关文章

      网友评论

          本文标题:python基本认识

          本文链接:https://www.haomeiwen.com/subject/wbywtqtx.html