You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 28, 2021. It is now read-only.
@@ -22,6 +22,7 @@ This extension will contains a lot of Python Snippets for VSCode.
22
22
| pyenum | Enum |
23
23
| pyinum | Int Enum |
24
24
25
+
25
26
| built-in methods code snippets | Description |
26
27
| --- | --- |
27
28
| abs | Returns the absolute value of a number |
@@ -83,10 +84,7 @@ This extension will contains a lot of Python Snippets for VSCode.
83
84
| type | Returns the type of an object |
84
85
| unichr | Return the Unicode string of one character whose Unicode code is the integer i. |
85
86
| vars | Returns the __dict__ property of an object |
86
-
| zip | Returns an iterator, from two or more iterators |
87
-
88
-
89
-
87
+
| zip | Returns an iterator, from two or more iterators |
90
88
91
89
| built-in methods code examples | Description |
92
90
| --- | --- |
@@ -185,10 +183,7 @@ This extension will contains a lot of Python Snippets for VSCode.
185
183
| built_in.type=> | An example for using type |
186
184
| built_in.vars=> | An example for using vars |
187
185
| built_in.zip=>_1 | An example for using zip |
188
-
| built_in.zip=>_2 | An example for using zip |
189
-
190
-
191
-
186
+
| built_in.zip=>_2 | An example for using zip |
192
187
193
188
| string methods code snippets | Description |
194
189
| --- | --- |
@@ -232,11 +227,7 @@ This extension will contains a lot of Python Snippets for VSCode.
232
227
| .title | Converts the first character of each word to upper case |
233
228
| .translate | Returns a translated string |
234
229
| .upper | Converts a string into upper case |
235
-
| .zfill | Fills the string with a specified number of 0 values at the beginning |
236
-
237
-
238
-
239
-
230
+
| .zfill| Fills the string with a specified number of 0 values at the beginning |
240
231
241
232
| string methods code examples | Description |
242
233
| --- | --- |
@@ -291,13 +282,7 @@ This extension will contains a lot of Python Snippets for VSCode.
291
282
| string.title=> | An example for using title |
292
283
| string.translate=> | An example for using translate |
293
284
| string.upper=> | An example for using upper |
294
-
| string.zfill=> | An example for using zfill |
295
-
296
-
297
-
298
-
299
-
300
-
285
+
| string.zfill=>| An example for using zfill |
301
286
302
287
| list methods code snippets | Description |
303
288
| --- | --- |
@@ -311,12 +296,7 @@ This extension will contains a lot of Python Snippets for VSCode.
311
296
| .pop | Removes the element at the specified position |
312
297
| .remove | Removes the first item with the specified value |
313
298
| .reverse | Reverses the order of the list |
314
-
| .sort | Sorts the list |
315
-
316
-
317
-
318
-
319
-
299
+
| .sort | Sorts the list |
320
300
321
301
| list methods code examples | Description |
322
302
| --- | --- |
@@ -335,13 +315,7 @@ This extension will contains a lot of Python Snippets for VSCode.
335
315
| list.comp=>_2 | An example for using list comprehension |
336
316
| list.comp=>_3 | An example for using list comprehension |
337
317
| list.comp=>_4 | An example for using list comprehension |
338
-
| list.comp=>_5 | An example for using list comprehension |
339
-
340
-
341
-
342
-
343
-
344
-
318
+
| list.comp=>_5 | An example for using list comprehension |
345
319
346
320
| sets methods code snippets | Description |
347
321
| --- | --- |
@@ -361,11 +335,7 @@ This extension will contains a lot of Python Snippets for VSCode.
361
335
| .symmetric_difference | Returns a set with the symmetric differences of two sets |
362
336
| .symmetric_difference_update | inserts the symmetric differences from this set and another |
363
337
| .union | Return a set containing the union of sets |
364
-
| .update | Update the set with the union of this set and others |
365
-
366
-
367
-
368
-
338
+
| .update | Update the set with the union of this set and others |
369
339
370
340
| sets methods code examples | Description |
371
341
| --- | --- |
@@ -392,11 +362,7 @@ This extension will contains a lot of Python Snippets for VSCode.
392
362
| sets.symmetric_difference_update=> | An example for using symmetric_difference_update |
393
363
| sets.union=>_1 | An example for using union |
394
364
| sets.union=>_2 | An example for using union |
395
-
| sets.update=> | An example for using update |
@@ -410,9 +376,7 @@ This extension will contains a lot of Python Snippets for VSCode.
410
376
| .popitem | Removes the last inserted key-value pai |
411
377
| .setdefault | Returns the value of the specified key. If the key does not exist: insert the key, with the specified value |
412
378
| .update | Updates the dictionary with the specified key-value pairs |
413
-
| .values | Returns a list of all the values in the dictionary |
414
-
415
-
379
+
| .values | Returns a list of all the values in the dictionary |
@@ -426,38 +390,17 @@ This extension will contains a lot of Python Snippets for VSCode.
426
390
| dictionary.popitem=> | An example for using popitem |
427
391
| dictionary.setdefault=> | An example for using setdefault |
428
392
| dictionary.update=> | An example for using update |
429
-
| dictionary.values=> | An example for using values |
430
-
431
-
432
-
433
-
434
-
393
+
| dictionary.values=> | An example for using values |
435
394
436
395
| tuple methods code snippets | Description |
437
396
| --- | --- |
438
397
| .count | Returns the number of times a specified value occurs in a tuple |
439
-
| .index | Searches the tuple for a specified value and returns the position of where it was found |
440
-
441
-
442
-
443
-
398
+
| .index | Searches the tuple for a specified value and returns the position of where it was found |
444
399
445
400
| tuple methods code examples | Description |
446
401
| --- | --- |
447
402
| tuple.count=> | An example for using count |
448
-
| tuple.index=> | An example for using index |
449
-
450
-
451
-
452
-
453
-
454
-
455
-
| for loop code snippets | Description |
456
-
| --- | --- |
457
-
| for | for Statements |
458
-
459
-
460
-
403
+
| tuple.index=>| An example for using index |
461
404
462
405
| for loop code examples ||
463
406
| --- | --- |
@@ -469,29 +412,20 @@ This extension will contains a lot of Python Snippets for VSCode.
469
412
| for=>range_function_2 | An example for using for |
470
413
| for=>range_function_3 | An example for using for |
471
414
| for=>for_else | An example for using for |
472
-
| for=>for_else | An example for using for |
473
-
474
-
475
-
476
-
477
-
478
-
415
+
| for=>for_else | An example for using for |
479
416
480
417
| while loop code snippets | Description |
481
418
| --- | --- |
482
419
| while | while Statements |
483
-
| while_else | while Statements |
484
-
485
-
420
+
| while_els| while Statements |
421
+
486
422
487
423
| while loop code examples | Description |
488
424
| --- | --- |
489
425
| while=> | while Statements |
490
426
| while=>break_statement | while Statements |
491
-
| while=>continue_statement | while Statements |
427
+
| while=>continue_statement | while Statements |
492
428
493
-
494
-
495
429
496
430
| if/else statement code snippets | Description |
497
431
| --- | --- |
@@ -500,19 +434,14 @@ This extension will contains a lot of Python Snippets for VSCode.
|__next__=> | class __next__ method |
514
-
515
-
444
+
|__next__=> | class __next__ method |
516
445
517
446
| class code examples | Description |
518
447
| --- | --- |
@@ -525,28 +454,15 @@ This extension will contains a lot of Python Snippets for VSCode.
525
454
| class=>with_method_1 | class with method example |
526
455
| class=>with_method_2 | class with method example |
527
456
| class=>encapsulation | class encapsulation example |
528
-
| class=>polymorphism | class polymorphism example |
529
-
530
-
531
-
532
-
533
-
457
+
| class=>polymorphism | class polymorphism example |
| List Comprehensions code examples | Description |
552
468
| --- | --- |
@@ -556,27 +472,15 @@ This extension will contains a lot of Python Snippets for VSCode.
556
472
| list.comp=>_4 | An example for using list comprehension |
557
473
| list.comp=>_5 | An example for using list comprehension |
558
474
559
-
560
-
561
-
562
-
563
-
564
475
| lambda code examples | Description |
565
476
| --- | --- |
566
-
| lambda | A lambda function can take any number of arguments, but can only have one expression.|
567
-
568
-
569
-
477
+
| lambda | A lambda function can take any number of arguments, but can only have one expression.|
570
478
571
479
| function code snippets | Description |
572
480
| --- | --- |
573
481
| def=> | Defining Function |
574
482
| def=>with_default_value | Defining Function wqith default values |
575
-
| function=> | Defining Function |
576
-
577
-
578
-
579
-
483
+
| function=> | Defining Function |
580
484
581
485
| file code examples | Description |
582
486
| --- | --- |
@@ -586,16 +490,9 @@ This extension will contains a lot of Python Snippets for VSCode.
586
490
| file=>writeOwerWrite | Open a file and overwrite the content |
587
491
| file=>createFileIfDoesNotExist | Create a new file if it does not exist |
588
492
| file=>createFile | Create a new file |
589
-
| file=>deleteFile | delete a file |
590
-
591
-
592
-
593
-
493
+
| file=>deleteFile| delete a file |
594
494
595
495
## License
596
-
597
496
This project is published under MIT License. Read more [here](./LICENSE)
598
-
599
497
## Issues
600
-
601
-
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