1818 * [ Datetime] ( #datetime )
1919 * [ Operator] ( #operator )
2020 * [ Urllib] ( #urllib )
21- * [ Manipulação De Texto ] ( #manipulação-de-texto )
21+ * [ Text Handling ] ( #manipulação-de-texto )
2222 * [ Location] ( #location )
2323 * [ Transformations] ( #transformations )
2424 * [ Division] ( #division )
3636 * [ For] ( #for )
3737 * [ Loop With Logical Test] ( #loop-with-logical-test )
3838 * [ While] ( #while )
39- * [ Coleções ] ( #coleções )
39+ * [ Collections ] ( #Collections )
4040 * [ Notes] ( #notes )
4141 * [ Tuples] ( #tuples )
4242 * [ Lists] ( #lists )
7070 * [ Return Results] ( #return-results )
7171 * [ How To Create] ( #how-to-create )
7272 * [ Example] ( #example )
73- * [ Modularização ] ( #modularização )
73+ * [ Modules ] ( #Modules )
7474 * [ What Is It] ( #what-is-it )
7575 * [ Focus] ( #focus )
7676 * [ How To Create] ( #how-to-create )
7777 * [ Advantages] ( #advantages )
78- * [ Pacotes ] ( #pacotes )
78+ * [ Packages ] ( #Packages )
7979 * [ What Is It] ( #what-is-it )
8080 * [ How To Create] ( #how-to-create )
8181 * [ When To Use] ( #when-to-use )
82- * [ Error Handlings E Exceções ] ( #error-handlings-e-exceções )
82+ * [ Error Handlings and Exceptions ] ( #error-handlings-e-exceções )
8383 * [ Error Types] ( #error-types )
8484 * [ Syntax] ( #syntax )
8585 * [ Exception] ( #exception )
8888 * [ How To Create] ( #how-to-create )
8989 * [ Example] ( #example )
9090 * [ Except] ( #except )
91- * [ Manipulação De Arquivo Txt] ( #manipulação-de-arquivo-txt )
91+ * [ Handling Txt file ] ( #manipulação-de-arquivo-txt )
9292 * [ Prepare To Read Save Replace] ( #prepare-to-read-save-replace )
9393 * [ Parameters To Create Read] ( #parameters-to-create-read )
9494 * [ Save Text] ( #save-text )
@@ -168,7 +168,7 @@ f-string - ```f'test : {variable}'```
168168``` urllib.request.urlopen( URL of a site ) ``` - attempts to access a site<br />
169169``` variable_with_site_url.getcode() ``` - Returns a code for the access attempt, with 200 meaning successful.<br />
170170
171- ## Manipulação De Texto
171+ ## Text Handling
172172
173173### Location
174174
@@ -248,7 +248,7 @@ Conditions within conditions<br />
248248
249249
250250
251- ## Coleções
251+ ## Collections
252252
253253### Notes
254254
@@ -426,7 +426,7 @@ def function(a,b,c):
426426 return s
427427```
428428
429- ## Modularização
429+ ## Modules
430430### What Is It
431431the separation of the main program from the functions<br />
432432### Focus
@@ -444,7 +444,7 @@ inside put all the functions you need, after that in the main program use ```imp
444444* Hiding detailed code
445445* Reusability in other projects
446446
447- ## Pacotes
447+ ## Packages
448448
449449### What Is It
450450A folder with various Modules, allowing you to separate modules by subject<br />
@@ -454,7 +454,7 @@ Always inside a package you must have a file named: ```__init__.py``` where the
454454### When To Use
455455When projects start to get very large<br />
456456
457- ## Error Handlings E Exceções
457+ ## Error Handlings and Exceptions
458458### Error Types
459459#### Syntax
460460Typing errors, the typed command does not exist<br />
@@ -487,7 +487,7 @@ except ValueError:
487487 Handling for the ValueError
488488```
489489
490- ## Manipulação De Arquivo Txt
490+ ## Handling Txt file
491491### Prepare To Read Save Replace
492492
493493``` variable = open('Path you want to create/Read',Parameter) ```
0 commit comments