Skip to content

Commit 92ef8a2

Browse files
authored
Add files via upload
1 parent 82a6761 commit 92ef8a2

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
layout: post
3+
title: "python学习笔记"
4+
subtitle: "学习汇总"
5+
date: 2025-05-19
6+
author: "mkk"
7+
header-style: text
8+
catalog: true
9+
tags:
10+
- 笔记
11+
---
12+
13+
# Python基础
14+
15+
## 注释
16+
注释是对代码的解释说明。
17+
单行注释(行注释)
18+
Python 中 # 后的一行内的内容会被视为注释
19+
20+
'''
21+
\# print("hello world")
22+
print("hello world") # 打印hello world
23+
'''

0 commit comments

Comments
 (0)