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

python 学习之路-day2

时间:2016-06-21 17:25:16      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

第二天找到点信心,这个代码居然看懂了呢。

####引入变量name根据提示输入你的名字

name = input(‘please input your name :‘)
print (‘hello!‘+(name))

 

####演示输出函数的实例

print (‘a‘,‘b‘,‘c‘)
print (‘a‘,‘b‘,‘c‘,sep=‘,‘)
print (‘a‘,‘b‘,‘c‘,end=‘;‘)
print (‘a‘,‘b‘,‘c‘)

####python的四则运算

>>>3*5/2+4*2

>>>2**6+6**6

####math模块的基本函数

import math

x = 2 

####求正弦值

math.sin(x)

####求平方根

mah.sqrt(x)

####求2的16次方

math.pow(2,16)

python 学习之路-day2

标签:

原文地址:http://www.cnblogs.com/zhanggs/p/5604225.html

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