python字符串

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