9*9的矩形,中间有个星号,按不同方向键,星星对应移动

Posted skbarcode

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了9*9的矩形,中间有个星号,按不同方向键,星星对应移动相关的知识,希望对你有一定的参考价值。

"""共9*9个字符,随机打印一个星星,用户输入L/R/u/d,向相应方向移动一位,到达最左/右停止移动,输入EXIT退出"""
#导入随机数
from random import randint


#建一个类
class Star:
def __init__(self):#位置参数
self.row = randint(0,9)
self.col = randint(0,9)

#向左移动
def left(self):
if self.row>=1:
self.row-=1


#向右移动
def right(self):
if self.row<9:
self.row+=1

def up(self):
if self.col>=1:
self.col-=1

def down(self):
if self.col<9:
self.col+=1


#打印
def draw(self):
for i in range(0,10):
if i==self.col:
print("."*self.row+"*"+"."*(9-self.row))
else:
print("."*10)


#初始化
if __name__=="__main__":
a = 0#运行状态开关

star = Star()#建立实例

while a ==0:#运行开关
star.draw()#实例执行类方法
command = input("\n请输入移动方向或退出:L/l or R/r or D/d or U/u or exit")#提示对话
#向左移
if command.lower() =="r":
star.left()
elif command.lower() =="l":#向右移
star.right()
elif command.lower() == "u": # 向上移
star.up()
elif command.lower() == "d": # 向下移
star.down()
elif command.lower() =="exit": #退出
a+=1
else:print("你的输入有误!")

以上是关于9*9的矩形,中间有个星号,按不同方向键,星星对应移动的主要内容,如果未能解决你的问题,请参考以下文章

PHP实现手机号码中间四位用星号(*)隐藏的自定义函数分享

在每个矩形中创建 9 个圆(每个角 4 个,侧面 4 个,中间 1 个)同时/立即创建一个矩形

P5725 深基4.习8求三角形

为什么我的9补丁安卓启动画面中间有一个黑色矩形?

手机上怎么制作图片的水印

c语言中的星号“*” 都有啥作用,含代码提问 求帮忙读一行程序