python中的字符串

字符串的定义 a = 'hello' b = "westos" c = 'what\'s' d = "what's" e = """ 用户管理系统 1.添加用户 2.删除用户 3.显示用户 ..... """ print(e) print(type(e)) 字符串的特性 s = 'hello' # 索引:0 1 2 3 4(索引值是从0开始的) print
相关文章
相关标签/搜索