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:
@@ -10,21 +10,23 @@ localeTitle: و
|
||||
|
||||
#### مثال للاستخدام
|
||||
|
||||
`from collections import deque
|
||||
queue = deque(["January", "February", "March", "April"] )
|
||||
|
||||
queue.append("May")
|
||||
|
||||
queue.popleft()
|
||||
queue.popleft()
|
||||
|
||||
print "Spring months in the list: ", queue
|
||||
`
|
||||
```py
|
||||
from collections import deque
|
||||
queue = deque(["January", "February", "March", "April"] )
|
||||
|
||||
queue.append("May")
|
||||
|
||||
queue.popleft()
|
||||
queue.popleft()
|
||||
|
||||
print "Spring months in the list: ", queue
|
||||
```
|
||||
|
||||
#### انتاج |
|
||||
|
||||
`Spring months in the list: deque(['March', 'April', 'May'])
|
||||
`
|
||||
```
|
||||
Spring months in the list: deque(['March', 'April', 'May'])
|
||||
```
|
||||
|
||||
#### معلومات اكثر:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user