python随心笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python随心笔记相关的知识,希望对你有一定的参考价值。
1 print "hello,world" #打印hello,world
print “1+1” #打印字符串 1+1 单引号和双引号是单行字符串 print ["1+1" "+" "2+2" " " *2]*2 print (‘‘‘This is the first line This is the second line lont line‘‘‘) #三引号是多行字符串,可以直接输入回车,而不需要用\n来表示 print 1/2 #取整数型 输出0 print 6/3 #取整数型 输出2 print 1.0/2.0 #浮点型 输出0.5 print 6.0/3.0 #浮点型 输出2.0 print 6.0%3.0 # %求余运算符 a = ‘tset‘ print ‘it is a %s‘ %(a) #%还用在python的格式化输出,打印的结果就是 it is a test print 2 * 2 * 2 x = input ("x:") y = input ("y:") print x*y x1 = input("x1:") y1 = input("y1:") print x1 + y1 print 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随心笔记的主要内容,如果未能解决你的问题,请参考以下文章
终于懂了:Delphi重定义消息结构随心所欲,只需要前4个字节是消息编号就行了,跟Windows消息虽然尽量保持一致,但其实相互没有特别大的关系。有了这个,就有了主动,带不带句柄完全看需要。(代码片段