首页 > 代码库 > python随心笔记
python随心笔记
1 print "hello,world" #打印hello,world
print “1+1” #打印字符串 1+1 单引号和双引号是单行字符串print ["1+1" "+" "2+2" " " *2]*2print (‘‘‘This is the first line This is the second line lont line‘‘‘) #三引号是多行字符串,可以直接输入回车,而不需要用\n来表示print 1/2 #取整数型 输出0print 6/3 #取整数型 输出2print 1.0/2.0 #浮点型 输出0.5print 6.0/3.0 #浮点型 输出2.0print 6.0%3.0 # %求余运算符 a = ‘tset‘print ‘it is a %s‘ %(a) #%还用在python的格式化输出,打印的结果就是 it is a testprint 2 * 2 * 2 x = input ("x:")y = input ("y:")print x*yx1 = input("x1:")y1 = input("y1:")print x1 + y1print 2**3 #打印2的3次方print pow(2,3) #打印2的3次方print 10+pow(2,3*5)/3.0 #pow() 2的15次方 /3.0 +10
python随心笔记
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。