Commit 89963a73 by BellCodeEditor

auto save

parent 84af1854
Showing with 14 additions and 1 deletions
list1=[1,3,5,7]
list2=[2,4,6,8,1,7]
for i in range(4):
for a in range(6):
if list1[i] == list2[a]:
print(list1[i])
\ No newline at end of file
......@@ -83,10 +83,16 @@ while True:
num = 0
pygame.mixer.music.load(path + "\\" + music_list[num])
pygame.mixer.music.play()
play_m = play_time//60
play_s = play_time%60
info = str(play_m)+":"+str(play_s)
new_logo = pygame.transform.rotate(logo_img, angle)
newRect = new_logo.get_rect(center=(320,200))
pos = (newRect[0],newRect[1])
angle += 1
if play_button == stop_img:
angle += 1
screen.blit(bg_img, (0, 0))
screen.blit(play_button, (270, 330))
screen.blit(new_logo,pos)
......
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