python基础学习笔记——Python基础教程(第2版 修订版)第一章

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础学习笔记——Python基础教程(第2版 修订版)第一章相关的知识,希望对你有一定的参考价值。

 #模块

import math
math.floor(9from math import sqrt
sqrt(9)    #无需使用前缀
import cmath
cmath.sqrt(-1) #不能使用from...inport

#转义和单双引号

>>>“\"hello,word\"she said"
       "hello,word"she said‘ #使用print不显示引号

#拼接字符串  +

#输入 input raw_input  

name=input("what is you name?")
print("hello,"+name+"")

 

  

以上是关于python基础学习笔记——Python基础教程(第2版 修订版)第一章的主要内容,如果未能解决你的问题,请参考以下文章

python基础学习笔记——Python基础教程(第2版 修订版)第八章(异常)

python基础学习笔记——Python基础教程(第2版 修订版)第一章

python基础学习笔记——Python基础教程(第2版 修订版)第四章(字典)

《Python基础教程》第20章学习笔记

Python基础教程 第六章 学习笔记

python基础学习笔记——Python基础教程(第2版 修订版)第十章(充电时刻)