-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathexamples.py
100 lines (59 loc) · 835 Bytes
/
examples.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
if True:
pass
if False:
pass
expression = (2 + 1) * 5
# Implicit conversion
# if bool(expression):
if expression:
pass
if expression == 123:
pass
if expression is True:
pass
a_boolean = True
if a_boolean:
pass
# More explicit way
if a_boolean is True:
pass
# null value
a_null = None
if a_null:
pass
if not a_null:
pass
# More explicit way
if a_null is None:
pass
# More explicit way
if a_null is not None:
pass
# Falsy values
if []:
pass
if {}:
pass
if 0:
pass
else:
pass
if '':
pass
today = 'Monday'
hour = '15:00'
if today == 'Monday':
pass
elif today == 'Tuesday':
pass
elif today == 'Wednesday':
pass
else:
pass
if today == 'Monday':
if hour == '15:00':
pass
else:
pass
else:
pass