摘要:
python运算符 1.数学运算符 常见+,-,*,/,%,//(地板除),** print(10 + 20) print(10/4) # 2 print(10//4) # 向上取整 3 print(2 ** 3) #2的三次方 number = 10 number = number + 1 pri 阅读全文
摘要:
python的输出语句 1.支持双引号、单引号、三引号 print("hello world") print('hello python') print("""Linux windows MacOS""") print('''Nginx Httpd Tomcat''') print("This is 阅读全文
摘要:
Typora同步到博客园 python安装 1.python安装包下载 https://www.python.org/downloads/windows/ 2.python安装 参考:win10-pyton安装 3.克隆代码 git clone git@github.com:dongfanger/p 阅读全文