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))
相關文章
相關標籤/搜索