作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望在输出中显示弹珠点,并且随着弹珠数量的减少,星号也会减少。我不知道什么命令会让星号在 while 循环运行时下降。
#!/usr/bin/env python3
marbles = 10 #You start out with 10 marbles
marble_dots = "**********" #Pretend these are ten marbles
while (marbles > 0):
print(marble_dots[:10])
#This prints out how many marbles you have left.
# We have to say str(marbles) because marbles is a number
# and we want to use it in a string (letters and other characters)
print("You have " + str(marbles) + " marbles left.")
if (marbles < 4):
print("Warning: You are running low on marbles!!")
#This is another way of saying "Subtract 1 from the marbles variable"
# It is logically the same as writing "marbles = marbles - 1", just shorter
marbles -= 1
# Make a newline, so there's an empty line before the next time we run this loop
print("")
最佳答案
快到了!
只需将打印内容从硬编码的 10
更改为剩余弹珠的数量
while (marbles > 0):
print(marble_dots[:marbles])
您也可以将其替换为:
print('*' * marbles)
每个弹珠都会打印一次 *。
关于python - 如何在代码中按降序减去星号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70143712/
序 大家好呀,我是summo,这次来写写我在上班空闲(摸鱼)的时候做的一个小网站的事。去年阿里云不是推出了个活动嘛,2核2G的云服务器一年只要99块钱,懂行的人应该知道这个价格在业界已经是非常良心了
我尝试根据给定的级别顺序(BFS 顺序)构造 BST。我知道这是可能的,但我不知道我该怎么写。问题是我必须使用 BFS 序列。所以,我不能在这里使用递归,我必须迭代地编写我的程序......我发现这有
我是一名优秀的程序员,十分优秀!