Python速成ノート^一

2479 ワード

1.文字列の操作
  • print()出力ウィンドウにいくつかのテキスト
  • が表示されます.
    print("I love     ")
    
  • *5は、
  • を5回印刷します.
    print('I love      ' * 5)
    
  • ''はご飯のスラッシュ()を使って文字の変換をしてLet's goを打つ以外に!
  • print('Let\'s go!')
    print("Let's go!")
    
  • 元の文字列rは表記後の文字列をそのまま出力するが、末尾が「はい」であることに注意し、単一引用符で囲まなければ
  • である.
    print(r"Let's go!\\\\\\\\\'")
    print(r"Let's go!'\\\\\\\\\'")
    
  • 文字列回転int float str
  • c = int("19")
    c = float("19")
    c = str("19")
    
  • データ型の関数type()isinstance()を表示前のパラメータ型が後に作成された型であるかどうかを表示する
  • c = float("19")
    type(c)
    
    c
    19.0
    
    c = "    "
    isinstance(c,str)
    True
    

    2.一般的なオペレータ
  • pythonの算術オペレータ
  • + - * / % ** //
    
    /  :         4/3=1.3333333333333333333333333
    
    // :          4//3=1
    
    ** :          -3**2=-9      -(3*3)=-9
    
  • 演算子の優先度
  • 
            **
    
            -X  +X
    
            +  -  *  /  //
    
            >  <  >=  <=  !=  ==
    
            and   or   not
    
  • 論理演算子
  • and :     false and true ->fale
    
    or  :     false and true ->true
    
    not :not   not 0 ->true not 1 ->false python 0   false  false true  0     true   
    

    3.分岐と循環
  • pythonにおけるif else ifの書き方
  • if count >100:
        print("A")
        elif 100 > count >90:
        print("B")
    
  • pythonにおけるリストの定義(javaとの配列)およびforループの書き方
  • # coding=gbk(       )      
    '''
          
          
    for       
          for     
    '''
    store = ["  :    ", "  :    ", "      :    ", "  :       ,     ,          ,       !",
             "  :     .                !     ", "  :                       ",
             "  :    ,                   ", "  :            !", "  :          "]
    
    for each in store:
        print(each, len(each))
    
  • range()関数
  • '''
    range(  ,  ,  )
      :               (       )
      :           
      :          
      :       1  1 2    2
    '''
    for each in range(5):
        print(each)
    for each in range(2,9):
        print(each)
    for each in range(882,1115,5):
        print(each)
    
  • pythonのbrakeとcontinue
  •  java  ,brake    ,continue