Commit 01336fbc by antares

163524

parent 3af3c724
# -*-coding:utf-8 -*- #
# ---------------------------------------------------------------------------
# ProjectName: Stage2
# FileName: 0723_01.py
# Author: Chain
# Datetime: 2024/7/23 8:42
# Description:
# ---------------------------------------------------------------------------
str1 = """<div>
<p>这是第一段文字</p>
</div>
"""
# print(str1)
str2 = "hello"
# print(str2[0:4])
str3 = "一二三四五六七八九十"
print(str3[3:1:-1])
print(str3[-2:1:-1])
str0 = 'max'
str1 = 'min'
print(str0, str1)
str0, str1 = str1, str0
print(str0, str1)
study0723 test
333333333
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment