Travis build: 120

This commit is contained in:
30secondsofcode
2019-09-27 12:36:23 +00:00
parent 654ab969e3
commit 338a391975
3 changed files with 5 additions and 6 deletions

View File

@ -1792,8 +1792,7 @@ kebab('AllThe-small Things'); # "all-the-small-things"
Prints out the same string a defined number of times. Prints out the same string a defined number of times.
Use this method to print out the same string n number of times. Repeat the string `n` times, using the `*` operator.
```py ```py
def n_times_string(str,n): def n_times_string(str,n):

View File

@ -812,14 +812,14 @@
"type": "snippetListing", "type": "snippetListing",
"title": "n_times_string", "title": "n_times_string",
"attributes": { "attributes": {
"text": "Prints out the same string a defined number of times.\n\nUse this method to print out the same string n number of times.\n\n\n", "text": "Prints out the same string a defined number of times.\n\nRepeat the string `n` times, using the `*` operator.\n\n",
"tags": [ "tags": [
"string", "string",
"beginner" "beginner"
] ]
}, },
"meta": { "meta": {
"hash": "b8ba27a04a5c2dcd91f6643eb02b61b9df9a58bedea26ceb2042cb535c0c1eb1" "hash": "5f815cfc58d3339f19b865433b2965a08e64f336e1747009e915883096deb26b"
} }
}, },
{ {

View File

@ -1073,7 +1073,7 @@
"type": "snippet", "type": "snippet",
"attributes": { "attributes": {
"fileName": "n_times_string.md", "fileName": "n_times_string.md",
"text": "Prints out the same string a defined number of times.\n\nUse this method to print out the same string n number of times.\n\n\n", "text": "Prints out the same string a defined number of times.\n\nRepeat the string `n` times, using the `*` operator.\n\n",
"codeBlocks": { "codeBlocks": {
"code": "def n_times_string(str,n):\r\n return (str * n)", "code": "def n_times_string(str,n):\r\n return (str * n)",
"example": "n_times_string('py', 4) #'pypypypy'" "example": "n_times_string('py', 4) #'pypypypy'"
@ -1084,7 +1084,7 @@
] ]
}, },
"meta": { "meta": {
"hash": "b8ba27a04a5c2dcd91f6643eb02b61b9df9a58bedea26ceb2042cb535c0c1eb1" "hash": "5f815cfc58d3339f19b865433b2965a08e64f336e1747009e915883096deb26b"
} }
}, },
{ {