Skip to content

Commit 76ca0ac

Browse files
authored
Merge pull request #747 from KrucibleCoder/master
Created Spanish section + Corrected minor typos
2 parents 4f1e5c6 + 453d973 commit 76ca0ac

34 files changed

+11282
-53
lines changed

Chinese/19_file_handling_cn.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ person_dct= {
205205
"name":"Asabeneh",
206206
"country":"Finland",
207207
"city":"Helsinki",
208-
"skills":["JavaScrip", "React","Python"]
208+
"skills":["JavaScript", "React","Python"]
209209
}
210210
# JSON: 字典的字符串形式
211211
person_json = "{'name': 'Asabeneh', 'country': 'Finland', 'city': 'Helsinki', 'skills': ['JavaScrip', 'React', 'Python']}"
@@ -215,7 +215,7 @@ person_json = '''{
215215
"name":"Asabeneh",
216216
"country":"Finland",
217217
"city":"Helsinki",
218-
"skills":["JavaScrip", "React","Python"]
218+
"skills":["JavaScript", "React","Python"]
219219
}'''
220220
```
221221

@@ -230,7 +230,7 @@ person_json = '''{
230230
"name": "Asabeneh",
231231
"country": "Finland",
232232
"city": "Helsinki",
233-
"skills": ["JavaScrip", "React", "Python"]
233+
"skills": ["JavaScript", "React", "Python"]
234234
}'''
235235
# 将JSON字符串更改为字典
236236
person_dct = json.loads(person_json)
@@ -257,7 +257,7 @@ person = {
257257
"name": "Asabeneh",
258258
"country": "Finland",
259259
"city": "Helsinki",
260-
"skills": ["JavaScrip", "React", "Python"]
260+
"skills": ["JavaScript", "React", "Python"]
261261
}
262262
# 将字典转换为JSON字符串
263263
person_json = json.dumps(person, indent=4) # indent可以是2, 4, 8. 它漂亮地打印了。
@@ -273,7 +273,7 @@ print(person_json)
273273
"country": "Finland",
274274
"city": "Helsinki",
275275
"skills": [
276-
"JavaScrip",
276+
"JavaScript",
277277
"React",
278278
"Python"
279279
]
@@ -291,7 +291,7 @@ person = {
291291
"name": "Asabeneh",
292292
"country": "Finland",
293293
"city": "Helsinki",
294-
"skills": ["JavaScrip", "React", "Python"]
294+
"skills": ["JavaScript", "React", "Python"]
295295
}
296296
with open('./files/json_example.json', 'w', encoding='utf-8') as f:
297297
json.dump(person, f, ensure_ascii=False, indent=4)

Chinese/24_statistics_cn.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ print(numpy_array_from_list) # array([1, 2, 3, 4, 5])
9999
# Python列表
100100
python_list = [1,2,3,4,5]
101101

102-
numy_array_from_list2 = np.array(python_list, dtype=float)
103-
print(numy_array_from_list2) # array([1., 2., 3., 4., 5.])
102+
numpy_array_from_list2 = np.array(python_list, dtype=float)
103+
print(numpy_array_from_list2) # array([1., 2., 3., 4., 5.])
104104
```
105105

106106
### 创建布尔型NumPy数组

Chinese/README.md

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -2,36 +2,36 @@
22

33
| # 天数 | 主题 |
44
| ------ | :--------------------------------------------------------------------------------------: |
5-
| 01 | [介绍](./readme.md) |
6-
| 02 | [变量,内置函数](./02_variables_builtin_functions.md) |
7-
| 03 | [运算符](./03_operators.md) |
8-
| 04 | [字符串](./04_strings.md) |
9-
| 05 | [列表](./05_lists.md) |
10-
| 06 | [元组](./06_tuples.md) |
11-
| 07 | [集合](./07_sets.md) |
12-
| 08 | [字典](./08_dictionaries.md) |
13-
| 09 | [条件](./09_conditionals.md) |
14-
| 10 | [循环](./10_loops.md) |
15-
| 11 | [函数](./11_functions.md) |
16-
| 12 | [模块](./12_modules.md) |
17-
| 13 | [列表解析](./13_list_comprehension.md) |
18-
| 14 | [高阶函数](./14_higher_order_functions.md) |
19-
| 15 | [类型错误](./15_python_type_errors_cn.md) |
20-
| 16 | [Python 日期时间](./16_python_datetime_cn.md) |
21-
| 17 | [异常处理](./17_exception_handling_cn.md) |
22-
| 18 | [正则表达式](./18_regular_expressions_cn.md) |
23-
| 19 | [文件处理](./19_file_handling_cn.md) |
24-
| 20 | [包管理器](./20_python_package_manager_cn.md) |
25-
| 21 | [类和对象](./21_classes_and_objects_cn.md) |
26-
| 22 | [网页抓取](./22_web_scraping_cn.md) |
27-
| 23 | [虚拟环境](./23_virtual_environment_cn.md) |
28-
| 24 | [统计](./24_statistics_cn.md) |
29-
| 25 | [Pandas](./25_pandas_cn.md) |
30-
| 26 | [Python 网页](./26_python_web_cn.md) |
31-
| 27 | [Python 与 MongoDB](./27_python_with_mongodb_cn.md) |
32-
| 28 | [API](./28_API_cn.md) |
33-
| 29 | [构建 API](./29_building_API_cn.md) |
34-
| 30 | [结论](./30_conclusions_cn.md) |
5+
| 01 | [介绍](./readme.md) |
6+
| 02 | [变量,内置函数](./02_variables_builtin_functions.md) |
7+
| 03 | [运算符](./03_operators.md) |
8+
| 04 | [字符串](./04_strings.md) |
9+
| 05 | [列表](./05_lists.md) |
10+
| 06 | [元组](./06_tuples.md) |
11+
| 07 | [集合](./07_sets.md) |
12+
| 08 | [字典](./08_dictionaries.md) |
13+
| 09 | [条件](./09_conditionals.md) |
14+
| 10 | [循环](./10_loops.md) |
15+
| 11 | [函数](./11_functions.md) |
16+
| 12 | [模块](./12_modules.md) |
17+
| 13 | [列表解析](./13_list_comprehension.md) |
18+
| 14 | [高阶函数](./14_higher_order_functions.md) |
19+
| 15 | [类型错误](./15_python_type_errors_cn.md) |
20+
| 16 | [Python 日期时间](./16_python_datetime_cn.md) |
21+
| 17 | [异常处理](./17_exception_handling_cn.md) |
22+
| 18 | [正则表达式](./18_regular_expressions_cn.md) |
23+
| 19 | [文件处理](./19_file_handling_cn.md) |
24+
| 20 | [包管理器](./20_python_package_manager_cn.md) |
25+
| 21 | [类和对象](./21_classes_and_objects_cn.md) |
26+
| 22 | [网页抓取](./22_web_scraping_cn.md) |
27+
| 23 | [虚拟环境](./23_virtual_environment_cn.md) |
28+
| 24 | [统计](./24_statistics_cn.md) |
29+
| 25 | [Pandas](./25_pandas_cn.md) |
30+
| 26 | [Python 网页](./26_python_web_cn.md) |
31+
| 27 | [Python 与 MongoDB](./27_python_with_mongodb_cn.md) |
32+
| 28 | [API](./28_API_cn.md) |
33+
| 29 | [构建 API](./29_building_API_cn.md) |
34+
| 30 | [结论](./30_conclusions_cn.md) |
3535

3636
🧡🧡🧡 快乐编码 🧡🧡🧡
3737

Portuguese/README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@
1717
| 13 | [Compreensão de Listas](./13_Day_List_comprehension/13_list_comprehension.md)|
1818
| 14 | [Higher Order Functions](./14_Day_Higher_order_functions/14_higher_order_functions.md)|
1919
| 15 | [Tripos de Erros](./15_Day_Python_type_errors/15_python_type_errors.md)|
20-
| 16 | [Python Date time](./16_Day_Python_date_time/16_python_datetime.md) |
21-
| 17 | [Manipulação de Excessão](./17_Day_Exception_handling/17_exception_handling.md)|
22-
| 18 | [Regex (Expressões Regulares)](./18_Day_Regular_expressions/18_regular_expressions.md)|
23-
| 19 | [Manipulação De Arquivos](./19_Day_File_handling/19_file_handling.md)|
24-
| 20 | [Gerenciador De Pacotes](./20_Day_Python_package_manager/20_python_package_manager.md)|
25-
| 21 | [Classes e Objetos](./21_Day_Classes_and_objects/21_classes_and_objects.md)|
26-
| 22 | [Web Scraping](./22_Day_Web_scraping/22_web_scraping.md)|
27-
| 23 | [Ambiente Virtual](./23_Day_Virtual_environment/23_virtual_environment.md)|
28-
| 24 | [Estatisticas](./24_Day_Statistics/24_statistics.md)|
29-
| 25 | [Pandas](./25_Day_Pandas/25_pandas.md)|
30-
| 26 | [Python web](./26_Day_Python_web/26_python_web.md)|
31-
| 27 | [Python com MongoDB](./27_Day_Python_with_mongodb/27_python_with_mongodb.md)|
32-
| 28 | [API](./28_Day_API/28_API.md)|
33-
| 29 | [Construindo API's](./29_Day_Building_API/29_building_API.md)|
34-
| 30 | [Conclusão](./30_Day_Conclusions/30_conclusions.md)|
20+
| 16 | [Python Date time](./16_Day_Python_date_time/16_python_datetime.md) |
21+
| 17 | [Manipulação de Excessão](./17_Day_Exception_handling/17_exception_handling.md)|
22+
| 18 | [Regex (Expressões Regulares)](./18_Day_Regular_expressions/18_regular_expressions.md)|
23+
| 19 | [Manipulação De Arquivos](./19_Day_File_handling/19_file_handling.md)|
24+
| 20 | [Gerenciador De Pacotes](./20_Day_Python_package_manager/20_python_package_manager.md)|
25+
| 21 | [Classes e Objetos](./21_Day_Classes_and_objects/21_classes_and_objects.md)|
26+
| 22 | [Web Scraping](./22_Day_Web_scraping/22_web_scraping.md)|
27+
| 23 | [Ambiente Virtual](./23_Day_Virtual_environment/23_virtual_environment.md)|
28+
| 24 | [Estatisticas](./24_Day_Statistics/24_statistics.md)|
29+
| 25 | [Pandas](./25_Day_Pandas/25_pandas.md)|
30+
| 26 | [Python web](./26_Day_Python_web/26_python_web.md)|
31+
| 27 | [Python com MongoDB](./27_Day_Python_with_mongodb/27_python_with_mongodb.md)|
32+
| 28 | [API](./28_Day_API/28_API.md)|
33+
| 29 | [Construindo API's](./29_Day_Building_API/29_building_API.md)|
34+
| 30 | [Conclusão](./30_Day_Conclusions/30_conclusions.md)|
3535

3636
🧡🧡🧡 CODANDO FELIZ 🧡🧡🧡
3737

0 commit comments

Comments
 (0)