@@ -5,24 +5,47 @@ So I decided to finally seat down and learn python the right way
5
5
This is my playground to all my python code
6
6
7
7
### Guess game
8
+
8
9
The [ guess game] ( /guess-game ) it's a simple control flow example. You try to guess a ` number ` between 0 and 10.
9
10
10
11
### Palindrome
12
+
11
13
The [ palindrome] ( /palindrome ) test takes a ` string ` and checks if it's equals to the reverse of itself, ignoring cases and special characters.
12
14
13
15
### Grocery shopping
16
+
14
17
The [ grocery shopping] ( /grocery-shopping ) it's a example on how to read and write python objects on files using pickle.
15
18
16
- ### Password storage [ WIP]
17
- The [ password storage] ( /password-storage ) encrypts a password using the caesar cipher(for now) and stores in a file.
19
+ ### File operations
20
+
21
+ The [ file operations] ( /file-operations ) encrypts a text using the caesar cipher(for now) and stores in a file.
22
+
23
+ ### Object serializer
24
+
25
+ The [ object serializer] ( /object-serializer ) takes an object as a argument and serializes into ` json ` .
18
26
19
27
## Learning source
28
+
20
29
* [ A byte of python(PDF)] ( https://edisciplinas.usp.br/pluginfile.php/3252353/mod_resource/content/1/b_Swaroop_Byte_of_python.pdf )
21
30
22
31
* [ Python books] ( https://pythonbooks.revolunet.com/ )
23
32
24
33
* [ Django girls] ( https://tutorial.djangogirls.org/ )
25
34
26
- ## Some of mine already existing python projects
35
+ * [ Corey Schafer] ( https://www.youtube.com/channel/UCCezIgC97PvUuR4_gbFUs5g )
36
+
37
+ ## Some of my already existing python projects
38
+
27
39
* [ Pong] ( https://github.com/rjLelis/Pong )
28
- * [ Number convertion] ( https://github.com/rjLelis/number-conversion )
40
+
41
+ * [ Number convertion] ( https://github.com/rjLelis/number-conversion )
42
+
43
+ * [ Code Nation Challenge] ( https://github.com/rjLelis/code-nation-challenge )
44
+
45
+ ## Some of my Django projects
46
+
47
+ * [ blog_django] ( https://github.com/rjLelis/blog_django )
48
+
49
+ * [ todo-app] ( https://github.com/rjLelis/todo-app )
50
+
51
+ * [ contatos-crud] ( https://github.com/rjLelis/contatos-crud )
0 commit comments