My first python Markdown blog

Posted linzeyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了My first python Markdown blog相关的知识,希望对你有一定的参考价值。

我的第一篇python博客

我的第零个段落

这是一个超链接: python.org
这是一段引用:

Python is a programming language that lets you work more quickly and integrate your systems more effectively.

Ctrl + D 或输入exit可退出python互动式解释器
我的第一行说明

  1. 列表 list
  2. 元组 tuple
  3. 字典 dict
  4. 集合 set
  5. 字面量 int, float, string

我的第一个段落

下面我将添加一段python代码:

from datetime import datetime

def main():
    print(f"Hello world! Now is {datetime.now()}")

if __name__ == "__main__":
    main()

我的第二个段落

下面我将添加一张表格:

Mainstreamversion
3.10beta1
3.93.9.5
3.83.8.10
3.73.7.10
3.63.6.13

My sub paragraph

This is content

My subsub paragraph

Hello world!

以上是关于My first python Markdown blog的主要内容,如果未能解决你的问题,请参考以下文章

my first python blog

My first python script for work

Python--my first try!

Python基础---列表

This is my first blog----文件操作基本流程

如何在python中将集合转换为列表?