Skip to content

Commit

Permalink
Merge pull request #27 from burenkov-anton/patch-2
Browse files Browse the repository at this point in the history
remove print_r
  • Loading branch information
astynax committed Mar 15, 2019
2 parents 3968059 + 49bbece commit 9547bcf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/40-define-functions/350-naming/description.ru.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ instructions: |
```python
result = 'Today is %s %d' % ('February', 8)
print_r(result)
print(result)
```
<pre class='hexlet-basics-output'>Today is February 8</pre>
Expand All @@ -45,7 +45,7 @@ instructions: |
```python
result = 'Today is %s %02d' % ('February', 8)
print_r(result)
print(result)
```
<pre class='hexlet-basics-output'>Today is February 08</pre>
Expand All @@ -54,7 +54,7 @@ instructions: |
```python
result = 'Today is %s %04d' % ('February', 8)
print_r(result)
print(result)
```
<pre class='hexlet-basics-output'>Today is February 0008</pre>
Expand Down

0 comments on commit 9547bcf

Please sign in to comment.