File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ file**.
142
142
143
143
## Using else
144
144
145
- What if you want to print a different message if it's not raining? You
145
+ What if we want to print a different message if it's not raining? We
146
146
could do something like this:
147
147
148
148
``` py
@@ -155,10 +155,10 @@ if its_not_raining:
155
155
print (" It's not raining." )
156
156
```
157
157
158
- Now your program will print a different value depending on what the
158
+ Now our program will print a different value depending on what the
159
159
value of ` its_raining ` is.
160
160
161
- You can also add ` not its_raining ` directly to the second if statement:
161
+ We can also add ` not its_raining ` directly to the second if statement:
162
162
163
163
``` py
164
164
its_raining = True
@@ -169,7 +169,7 @@ if not its_raining:
169
169
print (" It's not raining." )
170
170
```
171
171
172
- But you can make it even better by using ` else ` .
172
+ But we can make it even better by using ` else ` .
173
173
174
174
``` py
175
175
its_raining = True
You can’t perform that action at this time.
0 commit comments