python中的字符串

01.字符串的定义 a = "hello" b = 'westos' c = "what's up" d = 'what\'s up' e = """ 用户管理系统 1.添加用户 2.删除用户 3.显示用户 """ print(a) print(b) print(c) print(d) print(e) print(type(e))
相关文章
相关标签/搜索