Python语法一 (人生苦短,我用Python)

Pythong 基本语法
一、输入:
money=raw_input("输入奖金 金额:")   #读取键盘输入,将所有输入作为字符串看待
float(raw_input("输入奖金 金额:"))   #强制转化为浮点型数据

二、输出:打印

print n,     #带,号可以空一个空格在一行输出,不带的话会在一列输出
print format(i*j,'3d'),   #输出i*j的数值,以三个格以整数形式输出

print "the are for the circle is",radius,"is",area   #   , 表示分隔 并空一个空格
print "the are for the circle is"+radius+"is",area   #   + 连接

print "hello.%s"% money
print格式化输出(字符串、整数)
python的print语句和字符串操作符%一起结合使用,可以实现替换的可能。方法很巧妙,应用范围也比较多,操作方法如下:
>>> print "%s is %d old" % ("she",20)
she is 20 old
这里的%s和%d是占位符,分别是为字符串类型和整型来服务的。在占位符相关文章中过详细的来讲解。

a,b,c=int(input("Please input three integers: "))

三、选择结构:
if scort>=60:
    print "yes!"   #条件真缩进语句块  四个空格
else:
    print "no!"

if scort>=60:
    print
elif scort>=50:
    print
else:
    print

四、循环:

1、while循环:

count=0
while count<5:
    print "fun!"
    count=count+1

2、for循环:

for anElement in object:
    #缩进语句块
依此遍历对象(object)中的每个元素,并赋值给anElement,然后执行循环体内语句

3、range函数:
range(2,10) ->[2,3,4,5,6,7,8,9]
range(2,10,3)->[2,5,8]
range(10,2,-1)->[10.9,8,7,6,5,4,3]


你可能感兴趣的:(Python)