Blogger Information
Blog 32
fans 0
comment 0
visits 19794
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Python 小习题
XuanGG的博客
Original
996 people have browsed it

是跟上次的那个python基础入门一块的 它有个习题

地址是 : 戳这里

看完入门做习题

下面是习题1 -10 的 源码 (可能跟原习题不同 是我自己写的 意思相同就行)


-------------------------------------------------------------------------------------------------------------------------

# test 1 hello world
# print 'hello world'

# test 2 print 输出字符、数字、bool值
'''
print  '字符'
print 1
print True
'''

# test3 变量赋值 = 把右边的赋值给左边的量。之后通过变量名得到变量的值
'''
a = 10
b = a
print a
'''
# test4 用 bool 类型的变量来表示逻辑的真假
'''
a = 2
b =1
print a <b
print a > b
'''

# test5 通过if 语句控制程序的执行路径 根据判断条件选择应当执行的代码
'''
a = 10
b = 20
if a > b:   # 由于 a 不大于b bool类型为假 不存在
   print a
if a < b :   # 为真存在执行
   print b
   
'''
# test6  通过while 语句循环执行一段代码,直到条件不满足为止
'''
a = 6
b = 0
while b <a :  # 循环 条件是b < a 时为真
   b += 1   # b 开始递增
   print b # 输出
'''

# test 7 random 是python随机模块 用以产生随机数或者获取随机结果
'''
from random import randint
a = randint(5,10)  # randint 生成 参数a-5 到10之间的
b = randint(1,100) # 同上
print a
print b
'''

# test 8  变量的运算 变量计算存储数据 比较大小 还可以进行运算
'''
a = 10
b = 20
c = 30
c = c +a
print  'a = ' , a  # 输出a
print 'b=' , a
print a + b
print  a+ b + c
print c  
'''
# test9 逻辑判断 一个逻辑表达式的结果是一个Bool类型的值 常被用作if 和 while 是否执行的条件
'''
a =False
if a:    # 判断a 为True 或者 False
   print 'aa'

b = True

#无线循环
while b:   # 因为b的值为True  永远的是对的
   print '陷入逻辑死循环'
'''

# test10 同while一样, for循环可以用来重复件事。它的本质是对一个序列中的元素进行递归
''''
a = range(10)
for i in a :  # i 来读取a list 的各值 相当于  i = a[i]
   print i

'''

以上就是了谢谢大家

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post