-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.py
2032 lines (1383 loc) · 57.8 KB
/
notes.py
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
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import copy
import csv # Работа с csv файлами
import json # Работа с JSON форматом
import math # Работа с матемтическми выражениями
import random # Работа с псевдо-рандомными значениями
import re # Регулярные выражения
import secrets # Работа с полностью рандомными значениями
import smtplib # Работа с отправкой сообщений по СМПТ
import sqlite3 # Работа с SQL-lite и DB-browoser
import string # Работа с различными символами (строки, цифры)
import sys # Работа с аргументами программы
import time # Работа с временностью выполнения кода
import webbrowser # Работа с веб-браузером
from array import array # Работа с типизированными массивами
from datetime import date, datetime, time, timedelta # Работа с датой и временем
from email.message import EmailMessage # Работа с отправкой сообщений по СМПТ
from functools import wraps
from os import path # Функциональный подход работы с файлами
from pathlib import Path # ООП подходит работы с файлами
from string import Template # Работа с отправкой сообщений по СМПТ
# ------- СОЗДАНИЯ СЛОВАРЯ ИЗ СПИСКОВ С ПОМОЩЬЮ ZIP:
def my_fn(one, two):
return dict(zip(one, two))
my_fn(one=["first", "second"], two=[1, 2]) # {'first': 1, 'second': 2}
my_fn(["first", "second"], [1, 2]) # {'first': 1, 'second': 2}
# ------- СОЗДАНИЯ СЛОВАРЯ ИЗ АРГУМЕНТОВ С КЛЮЧИВЫМИ СЛОВАМИ И ** ПАРАМЕТРА:
def first_my_fn(**keys):
keys["year"] = 2024
return keys
# first_my_fn(mark="Honda", price=10000) # {'mark': 'Honda', 'price': 10000, 'year': 2024}
# ------- ОБЬЕДИЕНИЕ СЛОВАРЕЙ С ПОМОЩЬЮ ** И МЕТОДА:
button = {
"width": 200,
"text": "Buy",
"color": "green",
}
red_button = {
**button, # Значение color останится "red", если указать ниже 27 строки - значение прещапишется на "green"
"color": "red",
}
# print(button) # {'width': 200, 'text': 'Buy', 'color': 'green'}
# print(red_button) # {'width': 200, 'text': 'Buy', 'color': 'red'}
button_info = {
"text": "Buy",
"color": "black",
"width": 0,
"height": 0,
}
button_style = {
"color": "yellow",
"width": 200,
"height": 300,
}
result_button = { # Распаковка двух словарей в один
**button_info,
**button_style
}
# ИЛИ
result_button = button_info | button_style # Вывод: значения второго, т.к значения первого перезаписываются
# print(result_button) # {'text': 'Buy', 'color': 'yellow', 'width': 200, 'height': 300}
first_dict = {
"key_one": 1,
"key_two": 2,
}
second_dict = {
"key_one": 3,
"key_two": 4,
}
third_dict = {
"key_one": 5,
"key_two": 6,
}
new_dict = {
**first_dict,
** second_dict,
** third_dict, # Значения послденего презаписываю все остальные ({'key_one': 5, 'key_two': 6})
}
# ИЛИ
new_dict = first_dict | second_dict | third_dict
# print(new_dict) # {'key_one': 5, 'key_two': 6}
# ------- ИНСТРУКЦИЯ DEL:
my_list = [1, 2]
del my_list[0] # del это инструкция - удаляет ПО ИНДЕКСУ
# ИЛИ
my_list.__delitem__(0)
# print(my_list) []
# ------- СТРОКИ И FSTRINGS:
my_name = "yevhen"
my_hobby = "running"
time = 8
result_simple_string = my_name + " " + "likes" + " " + my_hobby + " " + "at" + " " + str(time) + " " + "clock"
# ИЛИ
result_f_strng = f"{my_name} likes {my_hobby} at {time} o'clock!"
# print(result_f_strng.capitalize()) # Yevhen likes running at 8 o'clock!
# print(result_simple_string) # yevhen likes running at 8 clock
# ------- LAMDA ФУНКЦИЯ:
def mult(a, b):
return a * b
# ИЛИ
lambda a, b: a * b # Ключивое слово - парметры - тело функции
def greeting(greet):
return lambda name: f"{greet}, {name}!"
mroning_greeting = greeting("Good Morning") # Вызываем функцию greeting, сохроняем результат в пременную
# print(mroning_greeting)
# print(mroning_greeting("Yevhen")) # Вызываем переменную "результат", в результате вызывается лямбда функция,
# которой нужно ввести аргумент name. Это называется замыкание.
evening_greeting = greeting("Good Evenig")
evening_greeting("Yevhen")
# ------- ОБРАБОТКА ОШИБОК
try:
# Выполнение кода
pass
except TypeError: # Обработка ошибки TypeError
# Выполняется в случае ошибки в блоке try
pass
try:
print("10" / 0)
except ZeroDivisionError as e: # Если эта ошибка - выводится тело первого except
# print(type(e))
# print(e)
pass
except TypeError as e: # Если эта ошибка - выводится тело второго except
# print(type(e))
# print(e)
pass
else: # Выполняется если ошибок не возникло
# print("There was no error")
pass
finally: # Выполняется в любом случае
# print("Finish")
pass
# print("Continue")
# Если ошибка предварительнно не известна:
try:
# print(10 / 0)
pass
except Exception as e:
# print(isinstance(e, ZeroDivisionError))
# print(e)
pass
# ИЛИ
try:
# print(10 / 0)
pass
except:
# print("Some error")
pass
# Генерация ошибок (чтобы в будущем отлавить ее)
def divide_nums(a, b):
if b == 0:
raise ValueError("Second argument can't be 0!") # Генерация ошибки (генерация ошибки чтобы отлавить ее по типу)
return a / b
# print(divide_nums(10, 0))
try:
divide_nums(10, 0)
except ZeroDivisionError as e: # Ошибка уже сформированна, поэтому блок не сработает
# print(e)
pass
except ValueError as e: # Отлавливание снегерированной ошибки
# print(e, "WOW")
pass
my_dict = {
"image_title": "my_car",
"image_id": 232,
"image_likes": 10000,
}
# Обработка ошибки
def image_info(dict):
if "image_title" and "image_id" in dict:
return f"Image {dict['image_title']} has id {dict['image_id']}"
else:
raise TypeError("Dict dosen't have these itemes")
try:
# print(image_info(my_dict))
pass
except TypeError as e:
# print(e)
pass
del my_dict["image_id"]
try:
# print(image_info(my_dict))
pass
except TypeError as e:
# print(e)
pass
# ------- РАСПАКОВКА СПИСКОВ И КОРТЕЖЕЙ В ПЕРЕМЕННЫЕ
my_list_new = [1, 2, 3]
first, second, third = my_list_new
# print(first)
# print(second)
# print(third)
# ИЛИ
first, *second_list = my_list_new # Разбиение первого элемента отдельно, остальные в новый список
# print(first)
# print(second_list)
# ------- РАСПАКОВКА СЛОВАРЕЙ С ПОМОЩЬЮ ФУНКЦИИ И **
user_profile = {
"name": "Yevhen",
"comments_qty": 23,
"id": 232,
}
def user_info(name, comments_qty=0, id=0):
if not comments_qty: # Если переменная НЕ равна True - выводится тело условного оператора.
return f"{name} has no comments"
return f"{name} has {comments_qty} comments"
# name, comments_qty = user_profile # Распаковка КЛЮЧЕЙ словаря
# print(name) # name
# print(user_info(**user_profile)) # Распаковка словаря (2 параметра - 2 ключа)
# print(user_info(user_profile["name"], user_profile["comments_qty"])) # Распаковка по позиционным значениям
# print(user_info(comments_qty=user_profile["comments_qty"], name=user_profile["name"])) # Распковка по ключивым
# значениям
# ------- РАСПАКОВКА СПИСКОВ С ПОМОЩЬЮ ФУНКЦИИ И *
user_data = ["Yevhen", 23]
def second_user_info(name, commnets_qty=0):
if not commnets_qty:
return f"{name} has no comments"
return f"{name} has {commnets_qty} comments"
my_name, my_comments_qty = user_data
# print(my_name)
# print(second_user_info(*user_data))
# print(second_user_info(user_data[0], user_data[1]))
# print(second_user_info(name=user_data[0], commnets_qty=user_data[1]))
list_dicts = [
{"first": "one", "second": "two"},
{"id": 111, "likes": 2443},
{"bread": 10, "milk": 20}
]
first_d, second_d, third_d = list_dicts
# print(first_d)
def my_fun(first, second): # Параметры должны сооствсовать именем и количестовм ключей в словаре
return f"{first} and {second}"
# print(my_fun(**first_d))
# print(my_fun(first=second_d["id"], second=second_d["likes"]))
# print(my_fun(second_d["id"], second_d["likes"]))
# print(my_fun(first=third_d["bread"], second=third_d["milk"]))
# print(my_fun(**third_d))
# ------- УСЛОВНЫЕ ИНСТРУКЦИИ IF
person_info = {
"age": 20,
"name": "Yevhen"
}
if not person_info.get("name"): # Результат выражения с оператором not и ложным опернадом - всегда True
print("No name")
else:
# print(person_info["name"])
pass
my_number = 21.5
if type(my_number) is int:
print(my_number, "is integer")
else:
# print(my_number, "is not an integer")
pass
my_phone = {
"price": 200,
# "brand": "HTC"
}
if my_phone.get("brand"):
print("Phone's brand is", my_phone["brand"])
else:
# print("There is no phone brand")
pass
def nums_info(a, b): # Читабильный вариант функции с IF
if (type(a) is not int) or (type(b) is not int):
return "Один из аргументов не целое число!"
if a >= b:
return f"{a} больше либо равно {b}"
return f"{a} меньше {b}"
# print(nums_info(True, 10))
# print(nums_info(10, 2))
# print(nums_info(4, 15))
def nums_info_new(a, b):
if (type(a) is not int) or (type(b) is not int):
info = "Один из аргументов не целое число!"
elif a >= b:
info = f"{a} больше либо равно {b}"
else:
info = f"{a} меньше {b}"
return info
# print(nums_info_new(True, 10))
# print(nums_info_new(10, 2))
# print(nums_info_new(4, 15))
def route_info(dict):
if type(dict.get("distance")) is int:
return f"Distance to your destination {dict['distance']}"
elif type(dict.get("speed")) is int and type(dict.get("time")) is int:
return f"Distance to your destination is {dict['speed'] * dict['time']}"
else:
return "No distace info is available"
# print(route_info({"distance": 100}))
# print(route_info({"speed": 2, "time": 2}))
# print(route_info({"brand": "Honda"}))
# ------- ТЕРНАРНЫЙ ОПЕРАТОР
my_number = 21.5
# print("is int") if type(my_number) is int else print("is not int") # "Пиши если "is int" тип переменной инт
# иначе пиши "is not int"
# send_img(img) if img.get("is processed") else process_and_send_img(img)
product_qty = 10
# print("in stock" if product_qty > 0 else "out of stock")
temp = +24
weather = "hot" if temp > 18 else "cold"
my_img = ("1920", "1080")
# print(my_img[0], "x", my_img[1]) if len(my_img) == 2 and type(my_img[0]) is str and type(my_img[1]) is str else
# print("Not correct")
# Печатай первый x второй индекс если длинна списка = 2 и тип первого и второго элемента строки иначе печайт "Not"
info = f"{my_img[0]} x {my_img[1]}" if len(my_img) == 2 and type(my_img[0]) is str and type(my_img[1]) is str else "Not"
# print(info)
if len(my_img) == 2 and type(my_img[0]) is str and type(my_img[1]) is str:
# print(f"{my_img[0]} x {my_img[1]}")
pass
else:
# print("Not correct")
pass
my_new_string = "wdwdwdwdwwwwdwdwdwssdddddddddddddddddddddddddddddddddddddddddddddddddddddddddwdw"
# print("sring is long") if len(my_new_string) > 79 else print("string is short")
# ------- ЦИКЛЫ
my_new_dict = {
"x": 10,
"y": True,
"z": "abc",
}
for key in my_new_dict:
# print(key, ":", my_new_dict[key]) # Вывод ключа а полсе значения словаря
pass
for item in my_new_dict.items():
key, value = item
# print(key, value)
# ИЛИ
for key, value in my_new_dict.items():
# print(key, value)
pass
def dict_to_list(dict):
result = []
for k, v in dict.items():
if type(v) is int:
v * 2
result.append((k, v))
else:
result.append((k, v))
return result
# print(dict_to_list(my_new_dict))
def filter_list(list_to_filter, type_of_data):
for t in range(len(list_to_filter)):
for i in list_to_filter:
if type(i) is not type_of_data:
list_to_filter.remove(i)
return list_to_filter
# print(filter_list([35, True, "abc", 10], int))
def filter_new_list(list_to_filter, value_type):
def check_element_type(elem):
return isinstance(elem, value_type) # Вернуть элементы, которые соответствуют value_type
# Пробегаемся функцией по списку и возращаем значения которые соотвествуют value_type
# return list(filter(check_element_type, list_to_filter))
# ИЛИ Получаем элементы с нужным классом
return list(filter(lambda elem: type(elem) is value_type, list_to_filter))
return list(filter(check_element_type, value_type))
# Запечатываем с ловарь - вызываем функци filter -
# создаем lmbda функцию которая будет возращать соответствующие элементы из list_to_filter
# print(filter_new_list([1, 10, "abc", True, 5.5], int))
# ------- ЦИКЛ WHILE:
# while True:
# answer = input("Enter yes or no: ")
# if answer == "no":
# break
# random_num = random.randint(1, 5)
# while True:
# num = int(input("Enter your number: "))
# if num != random_num:
# print("Try again!")
# continue
# else:
# print("Yes!")
# break
# while True:
# num_frist = int(input("Please, enter first number: "))
# num_second = int(input("Please, enter second number: "))
# if num_frist == 0 or num_second == 0:
# print("Condition zero!")
# continue
# print(num_frist / num_second)
# answer = input("Do you want to contuniue? (yes/no): ")
# if answer == "no":
# break
# else:
# continue
# ------- Сокращенный цикл for in (Comprehension):
all_nums = [-3, 1, 0, 1, -20, 5]
absolute_nums = []
for num in all_nums:
# absolute_nums.append(abs(num))
pass
# ИЛИ
absolute_nums = [abs(num) for num in all_nums] # Форумируем список, пропуская все эелементы через abs()
# print(absolute_nums)
all_nums = [-3, 1, 0, 1, -20, 5]
positive_nums = []
for num in all_nums:
if num > 0:
positive_nums.append(num)
# ИЛИ
positive_nums = [num for num in all_nums if num > 0]
# print(positive_nums)
my_set = {1, 10, 15}
new_set = set()
for val in my_set:
# new_set.add(val * val)
pass
# ИЛИ
my_set = {val * val for val in my_set}
# print(my_set)
my_scores = {
"a": 10,
"b": 7,
"m": 14,
}
scores = {}
for k, v in my_scores.items():
# scores[k] = v * 10
pass
# ИЛИ
scores = {k: v * 10 for k, v in my_scores.items()}
my_new_list = [10, 7, 14]
result = {k: v * 2 for k, v in enumerate(my_new_list) if v > 7}
# print(result)
new_my_dict = {
"one": "first",
"two": "second",
}
new = {k: v.upper() for k, v in new_my_dict.items()}
# print(new)
new_new = {}
for k, v in new_my_dict.items():
new_new[k] = v.upper()
# print(new_new)
task_one_list = ["ogo", "aga", "ugu", "hello", "hi"]
list_str = [elem for elem in task_one_list if len(elem) > 3]
# print(list_str)
# squares_gen = (num * num for num in range(100_000_000)) # Маленький размер в памяти, не смотря на обьем данных.
# print(getsizeof(squares_gen)) # 104 size
# squares_list = [num * num for num in range(100_000_000)]
# print(getsizeof(squares_list)) # 835128600 size
# ------- ФИБОНАЧИ:
n = 10
x1 = 1
x2 = 1
for i in range(n):
# print(x1, end=" ")
x1 = x2
x2 = x1 + x2
# ТРИБОНАЧИ
x1 = 1
x2 = 1
x3 = 1
for i in range(n):
# print(x1, end=" ")
x1, x2, x3 = x2, x3, x1 + x2 + x3
# ---------------------------------ООП
class Car:
def move(self):
print("Car is moving")
def stop(self):
print("Car is stopped")
my_car = Car()
my_second_car = Car()
# print(type(my_car))
# print(isinstance(my_car, Car))
# my_car.move()
# my_car.stop()
# print(my_car.__dict__)
# print(my_car == my_second_car)
# print(id(my_car), id(my_second_car))
# Car.move(my_car)
class Comment:
def __init__(self, text):
self.text = text
self.votes_qty = 0
def upvote(self, qty):
self.votes_qty += qty
def reset_votes_qty(self):
self.votes_qty = 0
my_comment = Comment("My_comment")
# # print(my_comment)
# print(type(my_comment))
# print(my_comment.__dict__)
# print(dir(my_comment))
# print(my_comment.text)
# print(my_comment.votes_qty)
# my_comment.upvote(2)
# print(my_comment.votes_qty)
# my_comment.upvote(10)
# print(my_comment.votes_qty)
my_comment.upvote(10)
# print(my_comment.__dict__)
my_comment.upvote(20)
# print(my_comment.__dict__)
my_comment.reset_votes_qty()
# print(my_comment.__dict__)
class Image:
def __init__(self, resolution, title, extension):
self.resolution = resolution
self.title = title
self.extension = extension
def resize(self, new_res):
self.resolution = new_res
def retitle(self, new_title):
self.title = new_title
my_image = Image("1980 x 1020", "LG", "24")
# print(my_image.__dict__)
my_image.resize("2400 x 1200")
# print(my_image.__dict__)
my_new_image = Image("480 x 240", "AOC", "21")
# print(my_new_image.__dict__)
my_new_image.resize("1360 x 768")
# print(my_new_image.__dict__)
# print(my_image.__dict__)
my_image.retitle("Samsung")
# print(my_image.__dict__)
my_new_image.retitle("Benq")
# print(my_new_image.__dict__)
class NewComment:
total_comments = 0
def __init__(self, text):
self.text = text
NewComment.total_comments += 1
@staticmethod
def merge_comments(first, second):
return f"{first} {second}"
my_new_comment = NewComment("My comment")
my_new_comment_second = NewComment("My new comment")
m_1 = my_new_comment.merge_comments("Thanks!", "excelent")
# print(m_1)
m_2 = my_new_comment.merge_comments("Great", "Ok")
# print(m_2)
my_new_comment.total_comments = 10
NewComment.total_comments = 22
# print(NewComment.total_comments)
# print(my_new_comment.total_comments)
# ------------------МАГИЧЕСКИЕ МЕТОДЫ
class LastComment:
def __init__(self, text):
self.text = text
self.votes_qty = 0
def upvote(self):
self.votes_qty += 1
def __add__(self, other):
return (f"{self.text} {other.text}", self.votes_qty + other.votes_qty)
first_comment = LastComment("Hello")
second_comment = LastComment("Bye")
first_comment.upvote()
second_comment.upvote()
# print(first_comment + second_comment)
class ExtendedList(list):
def print_list_info(self):
pass
# print(f"list has {len(self)} elements")
custom_list = ExtendedList([3, 5, 2])
custom_list.print_list_info()
custom_list.append(3)
custom_list.print_list_info()
class Soda():
def __init__(self, ingredient=None):
if isinstance(ingredient, str):
self.ingredient = ingredient
else:
self.ingredient = None
def show_my_drink(self):
if self.ingredient:
# print(f"Cola and {self.ingredient}")
pass
else:
# print("Simple Cola")
pass
# drink1 = Soda()
# drink2 = Soda('lime')
# drink3 = Soda(5)
# drink1.show_my_drink()
# drink2.show_my_drink()
# drink3.show_my_drink()
class TriangleChecker():
def __init__(self, first_side, second_side, third_side):
self.first_side = first_side
self.second_side = second_side
self.thrid_side = third_side
def is_triangle(self):
if type(self.first_side) is not int or type(self.second_side) is not int or type(self.thrid_side) is not int:
return "Use only numbers!"
if self.first_side < 0 or self.second_side < 0 or self.thrid_side < 0:
return "It won't work with negative numbers."
if self.first_side + self.second_side <= self.thrid_side:
return "We don't can build the triangle with this sides!"
elif self.thrid_side + self.second_side <= self.first_side:
return "We don't can build the triangle with this sides!"
elif self.first_side + self.thrid_side <= self.second_side:
return "We don't can build the triangle with this sides!"
else:
return "Yes! We can build the triangle!"
# triangle1 = TriangleChecker(2, 3, 4)
# print(triangle1.is_triangle())
# triangle2 = TriangleChecker(77, 3, 4)
# print(triangle2.is_triangle())
# triangle3 = TriangleChecker(77, 3, 'Side3')
# print(triangle3.is_triangle())
# triangle4 = TriangleChecker(77, -3, 4)
# print(triangle4.is_triangle())
class Vehicle():
def __init__(self, name, max_speed, mileage):
self.name = name
self.max_speed = max_speed
self.mileage = mileage
model_x = Vehicle("Skoda", 240, 17)
class Transport():
pass
class Bus(Vehicle):
pass
school_bus = Bus("Volvo", 180, 12)
# print(f"Name: {school_bus.name}, Max-Speed: {school_bus.max_speed}, Mileage: {school_bus.mileage}")
class Point:
# Атрибуты класса/свойства класса
color = "red"
circle = 2
def set_cords(self, x, y):
self.x = x
self.y = y
def get_cords(self):
return (self.x, self.y)
Point.color = "black"
a = Point()
b = Point()
a.color = "green"
Point.type_pt = "disk"
setattr(Point, "prop", 1)
setattr(Point, "type_pt", "square")
del Point.prop
getattr(Point, "prop", False)
pt = Point()
pt.set_cords(1, 2)
pt2 = Point()
pt2.set_cords(10, 20)
cords1 = getattr(pt, "get_cords")
# print(pt2.__dict__)
# ---------------------SINGLETON
class DataBase:
__instance = None # Ссылка на экземпляр класса
def __new__(cls, *args, **kwargs):
if cls.__instance is None:
cls.__instance = super().__new__(cls)
return cls.__instance
def __del__(self):
DataBase.__instance = None
def __init__(self, user, psw, port):
self.user = user
self.psw = psw
self.port = port
def connect(self):
print(f"соединение c БД: {self.user}, {self.psw}, {self.port}")
def colse(self):
print("Закрытие cоединения с БД")
def read(self):
return "данные из БД"
def write(self, data):
print(f"запись в БД {data}")
db = DataBase("root", 1234, 80)
db2 = DataBase("root2", 5678, 40)
# print(id(db), id(db2))
# -------------------ДЕКОРАТОРЫ @classmethod и @staticmethod
class Vector:
MIN_CORD = 0
MAX_CORD = 100
@classmethod # Метод только для класса
def validate(cls, arg):
return cls.MIN_CORD <= arg <= cls.MAX_CORD # Попадает ли arg в диапазон
def __init__(self, x, y):
self.x = 0
self.y = 0
if self.validate(x) and self.validate(y):
self.x = x
self.y = y
# print(self.norm2(self.x, self.y))
def get_cord(self):
return self.x, self.y
@staticmethod # Используется БЕЗ ссылок на класс и экземпляр
def norm2(x, y):
return x*x + y*y
v = Vector(10, 20)
# print(Vector.norm2(5, 6))
# -------------ИНКАПСУЛЯЦИЯ
class Point:
def __init__(self, x=0, y=0):
self.__x = x
self.__y = y
@classmethod
def __check_value(cls, x):
return type(x) in (int, float)
def set_coord(self, x, y):
if self.__check_value(x) and self.__check_value(y):
self.__x = x
self.__y = y
else: