Commit 8b3535bd by BellCodeEditor

auto save

parent e43238c6
Showing with 20 additions and 2 deletions
......@@ -5,4 +5,5 @@
#这时还是无名小卒的关羽上前请战,请从b列表中删掉“关羽”,用三种方法哦。
b=['袁术','夏侯惇','曹操','关羽']
b.pop(3)
print(b)
\ No newline at end of file
b.remove("关羽")
print(b)
# 参数
# 参数
SCREENSIZE=(600,600)
BLACK=(0,0,0,13)
# 初始化
pygame.init()
font = pygame.font.SysFont('宋体', 20)
screen = pygame.display.set_mode(SCREENSIZE)
surface = pygame.Surface(SCREENSIZE, flags=pygame.SRCALPHA)
pygame.Surface.convert(surface)
surface.fill(BLACK)
screen.fill(BLACK)
作者:树獭叔叔
链接:https://juejin.cn/post/7126524225564704798
来源:稀土掘金
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
++ "b/\347\232\204v\344\270\272.py"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment