我的第一篇python博客
我的第零个段落
这是一个超链接: python.org
这是一段引用:
Python is a programming language that lets you work more quickly and integrate your systems more effectively.
按Ctrl + D 或输入exit
可退出python互动式解释器
我的第一行说明
- 列表 list
- 元组 tuple
- 字典 dict
- 集合 set
字面量int, float, string
我的第一个段落
下面我将添加一段python代码:
from datetime import datetime
def main():
print(f"Hello world! Now is {datetime.now()}")
if __name__ == "__main__":
main()
复制代码
我的第二个段落
下面我将添加一张表格:
Mainstream | version |
---|---|
3.10 | beta1 |
3.9 | 3.9.5 |
3.8 | 3.8.10 |
3.7 | 3.7.10 |
3.6 | 3.6.13 |
My sub paragraph
This is content
My subsub paragraph
Hello world!
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END