资源简介

python入门基础,大家一起来学python

资源截图

代码片段和文件信息


# coding:utf-8
# Author:林逸

import time
shipName = “勇者999“
captain = “张三“
localtion = “地球“
password = “alibaba“

pAttempt = input(“请输入你的密码: “)
while pAttempt != password:
    print(“密码错误!!!“)
    pAttempt = input(“输入你的密码: “)
print (“密码正确!欢迎来到“+shipName)

print (““)
print (“太空船 “+shipName+“ 当前在 “+localtion+“.“)
choice = ““
while choice != “/exit“:
    print (“您想要做什么 “+captain+“ ?“)
    print (““)
    print (“a. 去寻找另一个星球!“)
    print (“b. 发射炮弹!“)
    print (“c. 打开油锁!“)
    print (“d. 发送消息!“)
    print (“e. 自我销毁!“)
    print (“/exit 啥也不做!“)
    print (““)
    choice = input(“请做出您的选择: “)

    if choice == “a“:
        destination = input(“您想要去哪儿? “)

        print (“我们离开“+localtion+“准备去“+destination+“.“)
        time.sleep(5)
        print (“我们达到了“+destina

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2307  2018-01-16 21:58  PythonApplication1.py
     文件        1568  2018-01-16 21:46  PythonApplication1.pyproj

评论

共有 条评论