Markdown工具的使用

Markdown使用教程

分级标题


  • 的个数来分标题等级

  • 分割线的写法是3个*
  • 斜体和粗体是用*包围
  • 分点是*加上空格

引用是这样的吗

有的人

可他还活着


转载于https://www.jianshu.com/p/ceecac7fb30b


原作很赞


图片的写法
美女


关于代码块

    list_1 = [1, 4, 5, 7, 3, 6, 7, 9]
    list_1 = set(list_1)
    list_2 = set([2, 6, 0, 66, 22, 8, 4])
    print(list_1, list_2)
    #求交集
    print(list_1.intersection(list_2))
    #求并集
    print(list_1.union(list_2))
    #求差集(你有我无或你无我有)
    print(list_1.difference(list_2))
    print(list_2.difference(list_1))
posted @ 2021-11-08 14:17  gl11  阅读(41)  评论(0编辑  收藏  举报