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.
@@ -84,10 +84,7 @@ This extension will contains a lot of Python Snippets for VSCode.
84
84
| type | Returns the type of an object |
85
85
| unichr | Return the Unicode string of one character whose Unicode code is the integer i. |
86
86
| 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 |
91
88
92
89
| built-in methods code examples | Description |
93
90
| --- | --- |
@@ -186,10 +183,7 @@ This extension will contains a lot of Python Snippets for VSCode.
186
183
| built_in.type=> | An example for using type |
187
184
| built_in.vars=> | An example for using vars |
188
185
| 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 |
193
187
194
188
| string methods code snippets | Description |
195
189
| --- | --- |
@@ -233,11 +227,7 @@ This extension will contains a lot of Python Snippets for VSCode.
233
227
| .title | Converts the first character of each word to upper case |
234
228
| .translate | Returns a translated string |
235
229
| .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 |
241
231
242
232
| string methods code examples | Description |
243
233
| --- | --- |
@@ -292,13 +282,7 @@ This extension will contains a lot of Python Snippets for VSCode.
292
282
| string.title=> | An example for using title |
293
283
| string.translate=> | An example for using translate |
294
284
| 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 |
302
286
303
287
| list methods code snippets | Description |
304
288
| --- | --- |
@@ -312,12 +296,7 @@ This extension will contains a lot of Python Snippets for VSCode.
312
296
| .pop | Removes the element at the specified position |
313
297
| .remove | Removes the first item with the specified value |
314
298
| .reverse | Reverses the order of the list |
315
-
| .sort | Sorts the list |
316
-
317
-
318
-
319
-
320
-
299
+
| .sort | Sorts the list |
321
300
322
301
| list methods code examples | Description |
323
302
| --- | --- |
@@ -336,13 +315,7 @@ This extension will contains a lot of Python Snippets for VSCode.
336
315
| list.comp=>_2 | An example for using list comprehension |
337
316
| list.comp=>_3 | An example for using list comprehension |
338
317
| 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 |
346
319
347
320
| sets methods code snippets | Description |
348
321
| --- | --- |
@@ -362,11 +335,7 @@ This extension will contains a lot of Python Snippets for VSCode.
362
335
| .symmetric_difference | Returns a set with the symmetric differences of two sets |
363
336
| .symmetric_difference_update | inserts the symmetric differences from this set and another |
364
337
| .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 |
370
339
371
340
| sets methods code examples | Description |
372
341
| --- | --- |
@@ -393,11 +362,7 @@ This extension will contains a lot of Python Snippets for VSCode.
393
362
| sets.symmetric_difference_update=> | An example for using symmetric_difference_update |
394
363
| sets.union=>_1 | An example for using union |
395
364
| sets.union=>_2 | An example for using union |
396
-
| sets.update=> | An example for using update |
@@ -411,9 +376,7 @@ This extension will contains a lot of Python Snippets for VSCode.
411
376
| .popitem | Removes the last inserted key-value pai |
412
377
| .setdefault | Returns the value of the specified key. If the key does not exist: insert the key, with the specified value |
413
378
| .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 |
@@ -427,38 +390,17 @@ This extension will contains a lot of Python Snippets for VSCode.
427
390
| dictionary.popitem=> | An example for using popitem |
428
391
| dictionary.setdefault=> | An example for using setdefault |
429
392
| 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 |
436
394
437
395
| tuple methods code snippets | Description |
438
396
| --- | --- |
439
397
| .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 |
445
399
446
400
| tuple methods code examples | Description |
447
401
| --- | --- |
448
402
| 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 |
462
404
463
405
| for loop code examples ||
464
406
| --- | --- |
@@ -470,29 +412,20 @@ This extension will contains a lot of Python Snippets for VSCode.
470
412
| for=>range_function_2 | An example for using for |
471
413
| for=>range_function_3 | An example for using for |
472
414
| 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 |
480
416
481
417
| while loop code snippets | Description |
482
418
| --- | --- |
483
419
| while | while Statements |
484
-
| while_else | while Statements |
485
-
486
-
420
+
| while_els| while Statements |
421
+
487
422
488
423
| while loop code examples | Description |
489
424
| --- | --- |
490
425
| while=> | while Statements |
491
426
| while=>break_statement | while Statements |
492
-
| while=>continue_statement | while Statements |
427
+
| while=>continue_statement | while Statements |
493
428
494
-
495
-
496
429
497
430
| if/else statement code snippets | Description |
498
431
| --- | --- |
@@ -501,19 +434,14 @@ This extension will contains a lot of Python Snippets for VSCode.
|__next__=> | class __next__ method |
515
-
516
-
444
+
|__next__=> | class __next__ method |
517
445
518
446
| class code examples | Description |
519
447
| --- | --- |
@@ -526,28 +454,15 @@ This extension will contains a lot of Python Snippets for VSCode.
526
454
| class=>with_method_1 | class with method example |
527
455
| class=>with_method_2 | class with method example |
528
456
| class=>encapsulation | class encapsulation example |
529
-
| class=>polymorphism | class polymorphism example |
530
-
531
-
532
-
533
-
534
-
457
+
| class=>polymorphism | class polymorphism example |
| List Comprehensions code examples | Description |
553
468
| --- | --- |
@@ -557,27 +472,15 @@ This extension will contains a lot of Python Snippets for VSCode.
557
472
| list.comp=>_4 | An example for using list comprehension |
558
473
| list.comp=>_5 | An example for using list comprehension |
559
474
560
-
561
-
562
-
563
-
564
-
565
475
| lambda code examples | Description |
566
476
| --- | --- |
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.|
571
478
572
479
| function code snippets | Description |
573
480
| --- | --- |
574
481
| def=> | Defining Function |
575
482
| def=>with_default_value | Defining Function wqith default values |
576
-
| function=> | Defining Function |
577
-
578
-
579
-
580
-
483
+
| function=> | Defining Function |
581
484
582
485
| file code examples | Description |
583
486
| --- | --- |
@@ -587,16 +490,9 @@ This extension will contains a lot of Python Snippets for VSCode.
587
490
| file=>writeOwerWrite | Open a file and overwrite the content |
588
491
| file=>createFileIfDoesNotExist | Create a new file if it does not exist |
589
492
| file=>createFile | Create a new file |
590
-
| file=>deleteFile | delete a file |
591
-
592
-
593
-
594
-
493
+
| file=>deleteFile| delete a file |
595
494
596
495
## License
597
-
598
496
This project is published under MIT License. Read more [here](./LICENSE)
599
-
600
497
## 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