学习笔记之python入门篇学任何的编程语言都要快速入门学习编程语言 切记只看不敲运行:运行键或者shift+enters1="hello"s2="world"s3=s1+" "+s2 中间有空格print(s3)运行 hello world (中间也有空格)s1+s2运行helloworld 中间就没有空格安装库的语法:pip install xxx(在cmd终端运行)使用库的语法:import xxx