python学习过程中随手写的测试脚本-testif.py
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习过程中随手写的测试脚本-testif.py相关的知识,希望对你有一定的参考价值。
## 输入name
##name = input(‘What is your name ‘)
name = ‘stan‘
## test for if,elif
if name == ‘stan‘:
print(‘1. yes , your are stan‘ )
print(‘here is if‘)
elif name == ‘vanees‘:
print(‘2. not stan, you are vanees‘ )
print(‘here is elif‘)
else:
print(‘9. other people , your name is‘, name )
print(‘here is else‘)
##注意数字转型
tnum = input (‘compare with 5 ,number is ‘)
##此时t_num为string,需要转型为int
tnums = int(tnum)
if tnums<5:
print(‘tnum<5, it is‘,tnums)
else:
print(‘tnum>=5, it is‘,tnums)
以上是关于python学习过程中随手写的测试脚本-testif.py的主要内容,如果未能解决你的问题,请参考以下文章
python学习过程中随手写的测试脚本-testloop.py
平时随手写的一些脚本程序:shell,perl,python