File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ file**.
142142
143143## Using else
144144
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
146146could do something like this:
147147
148148``` py
@@ -155,10 +155,10 @@ if its_not_raining:
155155 print (" It's not raining." )
156156```
157157
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
159159value of ` its_raining ` is.
160160
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:
162162
163163``` py
164164its_raining = True
@@ -169,7 +169,7 @@ if not its_raining:
169169 print (" It's not raining." )
170170```
171171
172- But you can make it even better by using ` else ` .
172+ But we can make it even better by using ` else ` .
173173
174174``` py
175175its_raining = True
You can’t perform that action at this time.
0 commit comments