1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888
|
# 型 -------------------------------------------------------- # 型の宣言は不要 name = "taro" print(name) # taro age = 20 print(age) # 20 # type()で確認できる print(type(name)) # str print(type(age)) # int # 型変換 name = '1' new_name = int(name) print(type(new_name)) # int # print() -------------------------------------------------------- # カンマで繋げることができ、記号や行末を指定できる print('Hi', 'Taro', sep=',', end='\n\n') # そのまま出力 print("a\na") # a <改行> a print(r"a\na") # a\na と表示される(改行されない) # (ダブル)クォートを3つ print(""" hello1 hello2 """) print(''' hello1 hello2 ''') # 演算 -------------------------------------------------------- # + - * / は一般と同じ # 小数切捨(整数にする) print(2/3) # 0.6666... print(2/5) # 0.4 print(2/1.3) # 1.53... print(2//3) # 0 print(2//5) # 0 print(2//1.3) # 1 # 余り print(17%3) # 2 # べき乗 print(3**3) # 27 # まるめたい場合 print(round(3.1415,2)) # 3.14 # 文字列 -------------------------------------------------------- # 文字列の連結 print("a" + "b") # ab # 文字列は連続しても連結される print("Hello"" World") # Hello World # 文字列の繰り返し print("a" * 3) # aaa # 文字列はインデックスで指定できる w = "hello" print(w[0]) # h 先頭から print(w[-1]) # o 末尾から # インデックスのスライス(開始インデックス:終了インデックス) # スライスのインデックスは文字と文字の間を指しており、最初の文字の左端が0になっていると考える w = "hello" print(w[0:2]) # he print(w[2:]) # llo 最後まで # インデックスを指定しての代入はできない w = "hello" w = 'H' + w[1:] print(w) # Hello # 長さを取得 # len() w = "hello" print(len(w)) # 5 # 指定の文字列で始まっているか # startwith() w = "hello" print(w.startswith("he")) # True # 見つかったインデックスの位置を返す # find() w = "hello" print(w.find("ll")) # 2 print(w.find("z")) # -1 存在しない場合 # 指定文字列がいくつ存在するか # count() print("abc abc abc".count("ab")) # 3 # 最初の文字を大文字 # capitalize() print("abc abc abc".capitalize()) # Abc abc abc # 単語の最初が大文字 # title() print("abc abc abc".title()) # Abc Abc Abc # 全て大文字 # upper() print("abc abc abc".upper()) # ABC ABC ABC # 全て小文字 # lower() print("ABC ABC ABC".lower()) # abc abc abc # 置換 # replace() print("abc".replace("c","b")) # abb # format() print("a {} {} {} ".format("b","c", 3)) # a b c 3 print("hello {name}".format(name = "taro")) # hello taro # f-strings w = "taro" print(f"hello {w}") # hello taro # リスト -------------------------------------------------------- # インデックスで指定する w = ["a", "b", 1, 2] print(w[0]) # a # 文字列と同じでスライスが使える w = ["a", "b", 1, 2] print(w[1:]) # b, 1, 2 print(w[::-1]) # 2, 1, b, a # 1つ飛ばす w = list("123456789") print(w[::2]) # 1, 3, 5, 7, 9 # list() # 文字列をリストに変換 w = list("abc") print(w) # a, b, c # ネスト a = [1,2,3] b = ["a", "b", "c"] c = [a, b] print(c) # [[1,2,3],[a,b,c]] print(c[1][2]) # c # リストのスライスにリストを代入 w = [1,2,3,4,5] w[1:2] = [8,9] # [1:2]が2を指している print(w) # 1,8,9,3,4,5 # リスト末尾に追加 # append() w = [1,2,3] w.append(4) print(w) # 1,2,3,4 # リスト指定位置に追加 # insert() w = [1,2,3] w.insert(0,9) print(w) # 9,1,2,3 w = [1,2,3] w.insert(2,9) print(w) # 1,2,9,3 # 取り出し # pop() w = [1,2,3] print(w.pop(1)) # 2 # 削除 # del w = [1,2,3] del w[2] print(w) # 1,2 # 削除 # remove() # 値を指定して削除できる(最初に見つけた要素のみ) w = [1,2,3] w.remove(2) print(w) # 1,3 w = ["a","b","a",1,2] w.remove("a") print(w) # b,a,1,2 # 結合 a = [1,2] b = [3,4] c = a + b print(c) # 1,2,3,4 a += b print(a) # 1,2,3,4 # 結合 # extend() x = [1,2] y = [3,4] x.extend(y) print(x) # 1,2,3,4 # 指定した値のインデックス取得 # index() w = ["a","b","c","a","b","c"] print(w.index("c")) # 2 # 指定した値がいくつあるか # count() w = ["a","b","c","a","b","c","a","b","c"] print(w.count("c")) # 3 # ソート # sort() w = [1,2,1,3] w.sort() print(w) # 1,1,2,3 # 降順 w.sort(reverse=True) print(w) # 3,2,1,1 # 現在の並びを逆にする # reverse() w = [1,2,1,3] w.reverse() # 逆になる(sortのreverseとは違う) print(w) # 3,1,2,1 # 文字列を分解してリストへ # split() w = "hello world" print(w.split(" ")) # hello, world # リストを結合して文字列へ # join() w = ["hello","world"] print(" ".join(w)) # hello world # リストのコピー # copy() # a = b のようなリストの代入は参照渡しとなる a = [1,2,3] b = a.copy() a[0] = "a" print(a) # a,2,3 print(b) # 1,2,3 # タプル -------------------------------------------------------- # タプルは変更できない # タプルの中にリストをいれた場合のリストの値は変更できる w = (1,2,3) # カッコがなくてもカンマがあればタプル w = 1, print(type(w)) # tuple # アンパッキング w = (1,2) a,b = w print(a,b) # 1 2 # 辞書 -------------------------------------------------------- w = {"a":1,"b":2} print(w["b"]) # 2 # このようにもできる dict(a=1,b=2) # Key, Valueの一覧 print(w.keys()) # a, b print(w.values()) # 1, 2 # Valueの取得 print(w["a"]) # 1 print(w.get("a")) # 1 # 更新・追加 # update() a = {"a":1,"b":2} b = {"a":10,"c":3} a.update(b) print(a) # 'a': 10, 'b': 2, 'c': 3 # 削除 # pop() w = {"a":1,"b":2,"c":3} w.pop("b") print(w) # 'a':1, 'c':3 # 削除 # del() w = {"a":1,"b":2,"c":3} del w["b"] print(w) # 'a':1, 'c':3 # 削除 # clear() w = {"a":1,"b":2,"c":3} w.clear() print(w) # {} # Keyの存在確認 # in w = {"a":1,"b":2} print("a" in w) # True # 辞書のコピー # copy() # リスト同様、代入は参照渡し a = {"a":100, "b":200} b = a.copy() # 集合 -------------------------------------------------------- # 辞書と同じ波括弧 # 重複が消える w = {1,2,3,3} print(w) # 1,2,3 # 演算 a = {1,2,3} b = {2,3,4} # 両方に存在 print(a&b) # 2,3 # 全てに存在 print(a|b) # 1,2,3,4 # 一方に存在 print(a-b) # 1 print(b-a) # 4 print(a^b) # 1,4 # 追加 # add() w = {1,2,3,4,5} w.add(6) print(w) # 1,2,3,4,5,6 # 削除 # remove() w = {1,2,3,4,5} w.remove(5) print(w) # 1,2,3,4 # 削除 # clear() w = {1,2,3,4,5} w.clear() print(w) # set() # 制御文 -------------------------------------------------------- # if, elif, else w = 1 if w > 0: print("1") # 1 elif w == 0: print("2") else: print("3") # 複数条件 and, or a = 1 b = 2 if a == 1: if b == 2: print("1") # 1 if a == 1 and b == 2: print("1") # 1 # in, not in w = [1,2] if 1 in w: print("1") # 1 w = [1,2] if 3 not in w: print("1") # 1 # None # is はオブジェクトが同じかどうか w = None; if w is None: print("1") # 1 # while c = 0 while c <= 10: print(c) # 0 ... 10 c += 1 # break, continue c = 0 while True: if c == 5: break if c == 2: c += 1 continue print(c) # 0,1,3,4 c += 1 # while, else # elseはbreakすると実行されない c = 0 while c < 5: print(c) # 0,1,2,3,4 c += 1 else: print("1") # 1 # 入力する場合 # input() # for # 文字列も数値も可能 w = [1,2,3] for i in w: print(i) #1,2,3 # 文字列可能 w = "abc" for i in w: print(i) # a,b,c # break, continue w = "abc" for i in w: if i == "b": continue if i == "c": break print(i) # a # for, else # elseはbreakすると実行されない w = "abc" for i in w: print(i) # a,b,c else: print("1") # 範囲を指定して作成 # range() # (開始:終了:間隔) for i in range(5): # 0,1,2,3,4 print(i) for i in range(2,5): # 2,3,4 print(i) for i in range(2, 10, 3): # 2 5 8 print(i) # 変数が不要の場合アンダーバー for _ in range(3): print("1") # 1 1 1 # インデックスを取得 # enumerate() for i, name in enumerate(["taro", "jiro"]): print(i,"=",name) # 0:taro, 1:jiro # 複数のリストをfor # zip() a = [1,2] b = ["a","b"] c = ["taro","jiro"] for x, y, z in zip(a,b,c): print(x,":",y,":",z) # 1:a:taro,2:b:jiro # 辞書をfor w = {"a":100,"b":200} for i in w: print(i) # a,b # Key,Value取得 # items() w = {"a":100,"b":200} for a,b in w.items(): print(a,b) # a 100, b 200 # 関数 -------------------------------------------------------- # 実行前に定義が必要 def test(): print("1") test() # 1 # 関数を変数に代入できる def test(): print("1") f = test f() # 1 # 返り値はreturn def test(): return "1" print(test()) # 1 # 引数 def test(i): print(i) test("1") # 1 # 複数の引数 def test(a, b, c): print(a,b,c) test("1","2","3") # 1 2 3 # キーワード引数 def test(a, b, c): print(a,b,c) test(c="3", b="2", a="1") # 1 2 3 # デフォルト引数 def test(a=1,b=2): print(a,b) test() # 1 2 test("a") # a 2 # 参照渡しをデフォルト引数で渡すと呼び出す度に追加されてしまう def test(a, b =[]): b.append(a) return b print(test(1)) # 1 print(test(1)) # 1, 1 # 参照渡しは関数内で初期化する def test(a, b = None): if b is None: b = [] b.append(a) return b print(test(1)) # 1 print(test(1)) # 1 # タプル引数 # 引数の数を指定する必要がない def test(*args): for i in args: print(i) test(1,2,"a","b") # 1,2,a,b # タプルを作って渡すこともできる def test(*args): for i in args: print(i) w = ("a","b",1,2) test(*w) # a,b,1,2 # 辞書引数 def test(**kwargs): print(kwargs) test(name="a", age=1) # name:a,age:1 # 辞書を作って渡すこともできる def test(**kwargs): print(kwargs) w = { "name": "a", "age": 1 } test(**w) # name:a,age:1 # Docstrings # クォーテーション3つ def test(): """ 関数の中に記入する """ def test(): ''' 関数の中に記入する ''' # 関数内関数 def test(a,b): def sum(c,d): return c + d r = sum(a,b) print(r) test(1,2) # 3 # 関数を返すこともできる def test(a, b): def sum(): return a + b return sum f = test(1,2) print(f()) # 3 # デコレータ # @ def deco(f): def wrapper(*args): print("s") f(*args) print("e") return wrapper @deco def test(a,b): print(a+b) test(1,2) # s 3 e # ラムダ # lamda 引数: 返り値 w = "a" f = lambda w: w.capitalize() print(f(w)) # A # 即時実行 print((lambda : 1 + 2 + 3)()) # 6 # ジェネレータ def test(): yield "a" yield "b" yield "c" for i in test(): print(i) # a b c # これはできない print(next(test())) # a print(next(test())) # a print(next(test())) # a f = test() print(next(f)) # a print(next(f)) # b print(next(f)) # c # 内包表記 -------------------------------------------------------- # リスト内包表記 a = (1,2,3) # タプル b = [] for i in a: b.append(i) print(b) # 1,2,3 # 下記のように書くことができる # リストの中にタプルを入れる print([i for i in (1,2,3,4)]) # 1,2,3,4 print([i for i in (1,2,3,4) if i % 2 == 0]) # 2,4 # 辞書内包表記 a = ["a","b","c"] b = [1,2,3] c ={} for x,y in zip(a,b): c[x] = y print(c) # a:1,b:2,c:3 # 下記のように書ける # 辞書の中に2つのリストを入れる a = ["a","b","c"] b = [1,2,3] c = {x:y for x,y in zip(a,b)} print(c) # a:1,b:2,c:3 # 集合内包表記 w = set() w = {i for i in range(3)} # 0,1,2 print(w) # ジェネレータ内包表記 w = (i for i in range(3)) print(next(w)) # 0 print(next(w)) # 1 print(next(w)) # 2 # ()を使うとジェネレータとなるのでタプルにするときはtuple()をつける w = tuple(i for i in range(3)) print(w) # 0,1,2 # 名前空間・スコープ -------------------------------------------------------- # グローバル変数を関数内で利用できる。 # ただし代入はできない。 w = "a" def test(): w = "b" print(w) test() # b print(w) # a # 関数内からグローバル変数を変更する場合globalをつける # globalをつけないと関数内変数となる。 w = "a" def test(): global w w = "b" print(w) test() # b print (w) # b # 宣言されている変数をみる # print(locals()) # print(globals()) # 例外 -------------------------------------------------------- # エラーをキャッチするだけ try: 10 / 0 except: print("1") # 1 # finallyを実行 try: 10 / 0 except: print("1") # 1 finally: print("2") # 2 # キャッチするエラーを指定 try: 10 / 0 except Exception as e: print("error: {}".format(e)) # エラーの内容が表示される # elseはtryが正常終了した場合に実行される try: print("1") # 1 except Exception as e: print("error: {}".format(e)) else: print("2") # 2 finally: print("3") # 3 # 例外を発生させる場合 # raise IndexError # import -------------------------------------------------------- # pack(任意)というフォルダを作成し、__init__.pyとutil.pyというファイルを作成し # util.pyの中でtest()を定義している場合 # 定義方法 # import pack.util # pack.util.test() # あるいは # from pack import util # util.test() # あるいは # from pack.util import say_hello # test() # asをつけることもできる # from xxx import yyy as zzz # 組み込み関数は下記に定義 # import builtins # importされると実行されるため、importされる可能性がある場合 # __name__にはファイル名が入る def main(): print("1") if __name__ == "__main__": main() # クラス -------------------------------------------------------- class test_class(object): # コンストラクタ def __init__(self, i): self.prop = i # デストラクタ def __del__(self): print("2") def test(self): print(self.prop) w = test_class("1") w.test() # 1 # 継承 class test_class(object): def test(self): print("1") class test_class2(test_class): pass w = test_class2() w.test() # 1 # オーバーライド class test_class(object): def test(self): print("1") class test_class2(test_class): def test(self): print("2") # オーバーライド w = test_class2() w.test() # 2 # 親クラスのコストラクタを呼ぶ # super() class test_class: def __init__(self,i): self.prop = i def test(self): print(self.prop) class test_class2(test_class): def __init__(self, i): super().__init__("2") w = test_class2("1") w.test() # 2 # プロパティ(getter, setter) # インスタンス変数、関数名を同じにする class test_class: # コンストラクタ def __init__(self): self._p = "1" # getter @property def p(self): return self._p # setter @p.setter def p(self, i): self._p = i w = test_class() print(w.p) # 1 w.p = "2" print(w.p) # 2 # 抽象クラス import abc class test_class(metaclass=abc.ABCMeta): @abc.abstractclassmethod def test(self): pass class test_class2(test_class): def test(self): print("1") w = test_class2() w.test() # 1 # 多重継承 # class xxx (yyy, zzz) のように複数継承できる。 # 同じ名前がある場合、左側が利用される。 # クラス変数 class test_class: prop = "1" def __init__(self, p): self.prop += p w = test_class("2") print(w.prop) # 12 # classメソッド、statciメソッド class test_class: prop = "1" @classmethod def test1(cls): print(cls.prop,"a") @staticmethod def test2(): print("b") test_class.test1() # 1 a test_class.test2() # b |