关于python:Python自动化6-写一个python程序

36次阅读

共计 727 个字符,预计需要花费 2 分钟才能阅读完成。

  1. python 程序
    6.1 应用 vim 写 python 程序
    生产环境中,咱们会将程序的代码写成一个文件,这个文件就成为一个 python 程序文件,文件名以 .py 为结尾。
    猜数字
vim test1_gustnu.py

#!/usr/bin/env python3

#file name test1_gustnu.py   猜数字

print("猜数字游戏开始")

n = input("请输出一个数字:")

n = int(n)

if n == 18:
    print("猜对了!")
elif n > 18:
    print("大了!")
else:
    print("小了!")

执行 python 文件

python3 test1_gustnu.py 
#或
chmod +x  test1_gustnu.py 
 ./test1_gustnu.py 

6.2 while 循环
语法:

while 条件表达式:条件表达式为真,就执行代码,必须缩进 4 个空格
     多行代码需放弃缩进统一

条件表达式能够是:
True #布尔值的 True
1 < 11 #但凡在 if 语句中应用的判断表达式,都能够应用
猜数字优化版

#!/usr/bin/env python3

#file name test1_gustnu.py   猜数字

print("猜数字游戏开始")
while True:
    n = input("请输出一个数字:")
    if not n:
        continue    #回绝,回到上一步
    if n == 'q':
         print("程序退出")
         break      #输出 q 退出
    n = int(n)

    if n == 18:
        print("猜对了!")
        break       #猜对跳出循环
    elif n > 18:
        print("大了!")
    else:
        print("小了!")
exit("退出程序")

以上就是本次分享的全部内容,当初想要学习编程的小伙伴欢送关注 Python 技术大本营,获取更多技能与教程。

正文完
 0