(1)通过交互模式输入玩家姓名并显示欢迎玩家的信息。
- 打开Python IDLE。
- 输入
playerName=input("请输入玩家的姓名")
- 回车
- 输入player1
- 回车
- 输入
print("欢迎您!"+playerName)
-
回车
(2)使用脚本模式输入玩家姓名并显示欢迎玩家信息。
- 点击File->New File
- 输入
playerName=input("请输入玩家的姓名")
print("欢迎您!"+playerName)
- 保存(文件名为HalfPastTen.py)
-
点击 RUN -> Run Module
显示结果如下:
(3)使用脚本模式输入玩家的筹码数,并打印出来。
在新建的File中继续输入(注意缩进、英文字符):
money=input("请输入玩家筹码数")
if int(money)<0:
print("输入有误,请重新输入")
else:
print("玩家的筹码数为:"+money)
显示结果如下:
(4)使用注释给代码加上开发者(自己的姓名)与版本信息。
在脚本模式第一行输入以下代码:
'''
Game Name : HalfPastTen
Developer : Christine
Version :2.0
Date :2019.1.19
'''