Convert single backtick code sections to triple backtick code sections for Arabic Guide articles (13 of 15) (#36240)
* fix: converted single to triple backticks13 * fix: added prefix Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com> * fix: removed language in wrong place Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com> * fix: add language postfix Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com> * fix: removed language in wrong place Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com>
This commit is contained in:
@@ -43,19 +43,20 @@ Docstring هو وسيلة للمطورين لتوصيل الغرض ، والمع
|
||||
|
||||
## مثال 1
|
||||
|
||||
`def is_less_than_five(some_number):
|
||||
'''(int) -> bool
|
||||
Returns True if the given number is less than 5, and False is the given number is greater than 5.
|
||||
REQ: some_number != 5
|
||||
>>> is_less_than_five(4)
|
||||
True
|
||||
>>> is_less_than_five(6)
|
||||
False
|
||||
>>> is_less_than_five(100000)
|
||||
False
|
||||
'''
|
||||
# Your code goes here
|
||||
`
|
||||
```python
|
||||
def is_less_than_five(some_number):
|
||||
'''(int) -> bool
|
||||
Returns True if the given number is less than 5, and False is the given number is greater than 5.
|
||||
REQ: some_number != 5
|
||||
>>> is_less_than_five(4)
|
||||
True
|
||||
>>> is_less_than_five(6)
|
||||
False
|
||||
>>> is_less_than_five(100000)
|
||||
False
|
||||
'''
|
||||
# Your code goes here
|
||||
```
|
||||
|
||||
### بعض الروابط المفيدة:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user