学习python之路_入门篇A
偶尔经同事的介绍进入了金角大王的博客里,看到大王编写的文章都是关于python编程的,由于自己一直也是做软件测试方面的工作,也一直想往自动化测试方面发展,了解到利用python可以进行自动化测试操作,可以减少人工测试的繁锁操作。
读了python的基础篇了解了python的发展历史及python的基础知识点,就开始跟着课程去编写一些小脚本。
如下面是使用了for循环的语句:
1 for i in range(10): 2 print("*******",i) 3 for j in range(10): 4 print(j) 5 if j > 5: 6 break
使用while循环写的语句:
1 Tom_age = 30 2 count = 0 3 while count < 3: 4 guess_age = int(input("Please guess Tom age:")) 5 if guess_age == Tom_age: 6 print("Great,You got it!") 7 elif guess_age > Tom_age: 8 print("Sorry,Too big") 9 else: 10 print("Sorry,Too small") 11 count += 1 12 if count == 3: 13 continue_try = input("Do you want to try again? Enter Y go on,Enter N close.") 14 if continue_try!= 'N': 15 count = 0
还有使用while编写的猜年龄语句:
1 age_of_oldboy = 56 2 count = 0 3 while count < 10: 4 #input前面加int表示将字符串转换成整数类型,如果不转换会报错。 5 guess_age = int(input("Guess age:")) 6 if guess_age == age_of_oldboy: 7 print("Yes,You got it.") 8 break 9 elif guess_age > age_of_oldboy: 10 print("Think smaller...") 11 else: 12 print("Think bigger!") 13 count += 1 14 else: 15 print("猜这么多次都不对,你这个笨蛋。")
努力学习,加油。
路在脚下,希望在前方,努力明天会更好!