Skip to content
This repository was archived by the owner on Aug 28, 2021. It is now read-only.

Commit 171715a

Browse files
committed
New Readme
1 parent a9b01e7 commit 171715a

File tree

1 file changed

+25
-129
lines changed

1 file changed

+25
-129
lines changed

README.md

Lines changed: 25 additions & 129 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,7 @@ This extension will contains a lot of Python Snippets for VSCode.
8484
| type | Returns the type of an object |
8585
| unichr | Return the Unicode string of one character whose Unicode code is the integer i. |
8686
| vars | Returns the __dict__ property of an object |
87-
| zip                                                                     | Returns an iterator, from two or more iterators |
88-
89-
     
90-
     
87+
| zip | Returns an iterator, from two or more iterators |
9188

9289
| built-in methods code examples | Description |
9390
| --- | --- |
@@ -186,10 +183,7 @@ This extension will contains a lot of Python Snippets for VSCode.
186183
| built_in.type=> | An example for using type |
187184
| built_in.vars=> | An example for using vars |
188185
| built_in.zip=>_1 | An example for using zip |
189-
| built_in.zip=>_2                                                 | An example for using zip |
190-
191-
     
192-
     
186+
| built_in.zip=>_2 | An example for using zip |
193187

194188
| string methods code snippets | Description |
195189
| --- | --- |
@@ -233,11 +227,7 @@ This extension will contains a lot of Python Snippets for VSCode.
233227
| .title | Converts the first character of each word to upper case |
234228
| .translate | Returns a translated string |
235229
| .upper | Converts a string into upper case |
236-
| .zfill                                                                    | Fills the string with a specified number of 0 values at the beginning |
237-
238-
     
239-
     
240-
230+
| .zfill| Fills the string with a specified number of 0 values at the beginning |
241231

242232
| string methods code examples | Description |
243233
| --- | --- |
@@ -292,13 +282,7 @@ This extension will contains a lot of Python Snippets for VSCode.
292282
| string.title=> | An example for using title |
293283
| string.translate=> | An example for using translate |
294284
| string.upper=> | An example for using upper |
295-
| string.zfill=>                                                       | An example for using zfill |
296-
297-
298-
     
299-
     
300-
301-
285+
| string.zfill=>| An example for using zfill |
302286

303287
| list methods code snippets | Description |
304288
| --- | --- |
@@ -312,12 +296,7 @@ This extension will contains a lot of Python Snippets for VSCode.
312296
| .pop | Removes the element at the specified position |
313297
| .remove | Removes the first item with the specified value |
314298
| .reverse | Reverses the order of the list |
315-
| .sort                                                                   | Sorts the list |
316-
317-
318-
     
319-
     
320-
299+
| .sort | Sorts the list |
321300

322301
| list methods code examples | Description |
323302
| --- | --- |
@@ -336,13 +315,7 @@ This extension will contains a lot of Python Snippets for VSCode.
336315
| list.comp=>_2 | An example for using list comprehension |
337316
| list.comp=>_3 | An example for using list comprehension |
338317
| list.comp=>_4 | An example for using list comprehension |
339-
| list.comp=>_5                                                 | An example for using list comprehension |
340-
341-
342-
343-
344-
     
345-
     
318+
| list.comp=>_5 | An example for using list comprehension |
346319

347320
| sets methods code snippets | Description |
348321
| --- | --- |
@@ -362,11 +335,7 @@ This extension will contains a lot of Python Snippets for VSCode.
362335
| .symmetric_difference | Returns a set with the symmetric differences of two sets |
363336
| .symmetric_difference_update | inserts the symmetric differences from this set and another |
364337
| .union | Return a set containing the union of sets |
365-
| .update                                                           | Update the set with the union of this set and others |
366-
367-
368-
     
369-
     
338+
| .update | Update the set with the union of this set and others |
370339

371340
| sets methods code examples | Description |
372341
| --- | --- |
@@ -393,11 +362,7 @@ This extension will contains a lot of Python Snippets for VSCode.
393362
| sets.symmetric_difference_update=> | An example for using symmetric_difference_update |
394363
| sets.union=>_1 | An example for using union |
395364
| sets.union=>_2 | An example for using union |
396-
| sets.update=>                                               | An example for using update |
397-
398-
399-
     
400-
     
365+
| sets.update=> | An example for using update |
401366

402367
| dictionary methods code snippets | Description |
403368
| --- | --- |
@@ -411,9 +376,7 @@ This extension will contains a lot of Python Snippets for VSCode.
411376
| .popitem | Removes the last inserted key-value pai |
412377
| .setdefault | Returns the value of the specified key. If the key does not exist: insert the key, with the specified value |
413378
| .update | Updates the dictionary with the specified key-value pairs |
414-
| .values                                                          | Returns a list of all the values in the dictionary |
415-
     
416-
     
379+
| .values | Returns a list of all the values in the dictionary |
417380

418381
| dictionary methods code examples | Description |
419382
| --- | --- |
@@ -427,38 +390,17 @@ This extension will contains a lot of Python Snippets for VSCode.
427390
| dictionary.popitem=> | An example for using popitem |
428391
| dictionary.setdefault=> | An example for using setdefault |
429392
| dictionary.update=> | An example for using update |
430-
| dictionary.values=>                                     | An example for using values |
431-
432-
     
433-
     
434-
435-
393+
| dictionary.values=> | An example for using values |
436394

437395
| tuple methods code snippets | Description |
438396
| --- | --- |
439397
| .count | Returns the number of times a specified value occurs in a tuple |
440-
| .index                                                            | Searches the tuple for a specified value and returns the position of where it was found |
441-
     
442-
     
443-
444-
398+
| .index | Searches the tuple for a specified value and returns the position of where it was found |
445399

446400
| tuple methods code examples | Description |
447401
| --- | --- |
448402
| tuple.count=> | An example for using count |
449-
| tuple.index=>                                             | An example for using index |
450-
451-
452-
     
453-
     
454-
455-
456-
| for loop code snippets | Description |
457-
| --- | --- |
458-
| for                                                                 | for Statements |
459-
     
460-
     
461-
403+
| tuple.index=>| An example for using index |
462404

463405
| for loop code examples | |
464406
| --- | --- |
@@ -470,29 +412,20 @@ This extension will contains a lot of Python Snippets for VSCode.
470412
| for=>range_function_2 | An example for using for |
471413
| for=>range_function_3 | An example for using for |
472414
| for=>for_else | An example for using for |
473-
| for=>for_else                                             | An example for using for |
474-
475-
     
476-
     
477-
478-
479-
415+
| for=>for_else | An example for using for |
480416

481417
| while loop code snippets | Description |
482418
| --- | --- |
483419
| while | while Statements |
484-
| while_else                                                     | while Statements |
485-
     
486-
     
420+
| while_els| while Statements |
421+
487422

488423
| while loop code examples | Description |
489424
| --- | --- |
490425
| while=> | while Statements |
491426
| while=>break_statement | while Statements |
492-
| while=>continue_statement                     | while Statements |
427+
| while=>continue_statement | while Statements |
493428

494-
     
495-
     
496429

497430
| if/else statement code snippets | Description |
498431
| --- | --- |
@@ -501,19 +434,14 @@ This extension will contains a lot of Python Snippets for VSCode.
501434
| ifelifelse | if/else if/else Statements |
502435
| ifelse | if/else Statements |
503436
| ifshort | ifshort Statements |
504-
| else                                                             | else Statements |
505-
506-
     
507-
     
437+
| else | else Statements |
508438

509439
| class code snippets | Description |
510440
| --- | --- |
511441
| class=> | python class |
512442
| __init__=> | class __init__ method |
513443
| __iter__=> | class __iter__ method |
514-
| __next__=>                                                       | class __next__ method |
515-
     
516-
     
444+
| __next__=> | class __next__ method |
517445

518446
| class code examples | Description |
519447
| --- | --- |
@@ -526,28 +454,15 @@ This extension will contains a lot of Python Snippets for VSCode.
526454
| class=>with_method_1 | class with method example |
527455
| class=>with_method_2 | class with method example |
528456
| class=>encapsulation | class encapsulation example |
529-
| class=>polymorphism                             | class polymorphism example |
530-
531-
     
532-
     
533-
534-
457+
| class=>polymorphism | class polymorphism example |
535458

536459
| import code snippets | Description |
537460
| --- | --- |
538-
| import=>                                                   | import module |
539-
540-
     
541-
     
542-
461+
| import=>| import module |
543462

544463
| List Comprehensions code snippets | Description |
545464
| --- | --- |
546-
| comp=>                                                 |List Comprehensions |
547-
548-
549-
     
550-
     
465+
| comp=> |List Comprehensions |
551466

552467
| List Comprehensions code examples | Description |
553468
| --- | --- |
@@ -557,27 +472,15 @@ This extension will contains a lot of Python Snippets for VSCode.
557472
| list.comp=>_4 | An example for using list comprehension |
558473
| list.comp=>_5 | An example for using list comprehension |
559474

560-
561-
562-
     
563-
     
564-
565475
| lambda code examples | Description |
566476
| --- | --- |
567-
| lambda                                                  | A lambda function can take any number of arguments, but can only have one expression.|
568-
569-
     
570-
     
477+
| lambda | A lambda function can take any number of arguments, but can only have one expression.|
571478

572479
| function code snippets | Description |
573480
| --- | --- |
574481
| def=> | Defining Function |
575482
| def=>with_default_value | Defining Function wqith default values |
576-
| function=>                                           | Defining Function |
577-
578-
579-
     
580-
     
483+
| function=> | Defining Function |
581484

582485
| file code examples | Description |
583486
| --- | --- |
@@ -587,16 +490,9 @@ This extension will contains a lot of Python Snippets for VSCode.
587490
| file=>writeOwerWrite | Open a file and overwrite the content |
588491
| file=>createFileIfDoesNotExist | Create a new file if it does not exist |
589492
| file=>createFile | Create a new file |
590-
| file=>deleteFile                                     | delete a file |
591-
592-
593-
     
594-
     
493+
| file=>deleteFile| delete a file |
595494

596495
## License
597-
598496
This project is published under MIT License. Read more [here](./LICENSE)
599-
600497
## Issues
601-
602-
If you find any issues, please create them [here](https://github.com/EliazBobadilla/Python-UltiSnippets-VSCode-Extension/issues).
498+
If you find any issues, please create them [here](https://github.com/EliazBobadilla/Python-UltiSnippets-VSCode-Extension/issues)

0 commit comments

Comments
 (0)