Fixed style typo in python guidelines (#27857)

* Fixed style typo in python guidelines

The python marker was below the ''' marker, moved it up in 2 examples.

* added output to python guide

Added an output from a conditional block and added the python tag to a code block
This commit is contained in:
Glafs
2018-11-15 10:52:07 +01:00
committed by Aditya
parent 04d84dd58e
commit 9313e09c45

View File

@ -80,6 +80,11 @@ if x % 2 == 0: # this is how you create a comment and now, checking for even.
else: else:
print ("The number is not even. So no point checking further.") print ("The number is not even. So no point checking further.")
``` ```
Output
```python
This number is even and is greater than 10
```
This was just a simple example of a nested if statement. Please feel free to explore more online. This was just a simple example of a nested if statement. Please feel free to explore more online.
While the examples above are simple, you can create complex conditions using <a href='https://guide.freecodecamp.org/python/comparisons' target='_blank' rel='nofollow'>boolean comparisons</a> and <a href='https://guide.freecodecamp.org/python/boolean-operations' target='_blank' rel='nofollow'>boolean operators</a>. While the examples above are simple, you can create complex conditions using <a href='https://guide.freecodecamp.org/python/comparisons' target='_blank' rel='nofollow'>boolean comparisons</a> and <a href='https://guide.freecodecamp.org/python/boolean-operations' target='_blank' rel='nofollow'>boolean operators</a>.
@ -90,8 +95,7 @@ While the examples above are simple, you can create complex conditions using <a
We can also use if-else statements with inline python functions. We can also use if-else statements with inline python functions.
The following example should check if the number is greater or equal than 50, if yes return True: The following example should check if the number is greater or equal than 50, if yes return True:
``` ```python
python
x = 89 x = 89
is_greater = True if x >= 50 else False is_greater = True if x >= 50 else False
@ -99,7 +103,7 @@ print(is_greater)
``` ```
Output Output
``` ```python
> >
True True
> >