码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2017-09-03 11:02:36      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:使用   bsp   hello   log   blog   nbsp   python   第一章   inpu   

 #模块

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版 修订版)第一章

标签:使用   bsp   hello   log   blog   nbsp   python   第一章   inpu   

原文地址:http://www.cnblogs.com/realmonkeykingsun/p/7468807.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!