python学习笔记一、python基础知识
一、python基础知识1、变量message="hello python"变量始终记录变量的最新值。变量名包含字母、数字、下划线,不能以数字开头。2、字符串"this is a string."2.1 修改字符串大小写:⬇str="this is a string"str.title() #单词首字母大写;str.upper() #所有字母大写;str.lower() #所有字母小写2.2 合并字符串:⬇== 使用 + 号