-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnone_not_is.py
88 lines (54 loc) · 1.85 KB
/
none_not_is.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
"""
Nonesinfning yagona ob'ektidir NoneType.
Noneo'zidan boshqa hech narsaga teng emas.
Boshqa qiymatlar bilan solishtirish uchun isyoki operatordan foydalaning .is notNone
Shuni ham ta'kidlash kerakki, None ob'ekti quyidagi xususiyatlarga ega:
Nonenolga teng emas (0, 0,0, …).
Nonebilan bir xil emas False.
Nonebo'sh satr bilan bir xil emas ( '').
Har qanday qiymat bilan taqqoslash o'zidan tashqari Noneqaytariladi .FalseNone
github.com/themusharraf
""" # noqa
None
print(type(None))
print(None == None)
print(None is None)
class Apple:
def __eq__(self, other):
return True
apple = Apple()
print(apple == None)
# 1) o'zgaruvchining boshlang'ich qiymati sifatida Python None dan foydalanish # noqa
state = None
print(id(state))
if state is None:
state = 'start'
# 2) O'zgaruvchan standart argument muammosini tuzatish uchun Python None ob'ektidan foydalanish # noqa
def append(color, colors=[]):
colors.append(color)
return colors
colors = ['red', 'green']
append('blue', colors)
print(colors)
hs1 = append('yellow')
print(hs1)
rgb = append('red')
print(rgb)
# Muammo shundaki, funktsiya belgilangan ro'yxatni yaratadi va har bir keyingi called( chaqirilsa ) bir xil ro'yxatni ishlatadi. # noqa
# None Ushbu muammoni hal qilish uchun siz qiymatdan quyidagi tarzda standart parametr sifatida foydalanishingiz mumkin # noqa
def append(color, colors=None):
if colors is None:
colors = []
colors.append(color)
return colors
hsl = append('hue')
print(hsl)
rgb = append('red')
print(rgb)
# 3) Funktsiyaning qaytish qiymati sifatida Python None obyektidan foydalanish # noqa
# Agar funktsiya qaytish qiymatiga ega bo'lmasa, u Nonesukut bo'yicha qaytadi. # noqa
def say(something):
print(something)
result = say("hello")
print(result)
# Funktsiya say()hech narsa qaytarmaydi; shuning uchun u qaytadi None. # noqa