• This project
    • Loading...
  • Sign in

2020-2-capstone-design2 / 2016104096

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • 2016104096
  • code
  • renderer.py
  • 강수빈's avatar
    코드 추가 · c8dfc63a
    c8dfc63a
    강수빈 authored 2020-12-14 03:43:54 +0900
renderer.py 181 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10
import pygame
import time

pygame.mixer.init()
test = pygame.mixer.Sound("test4.wav")
start = time.time()
while(True):
    test.play()
    time.sleep(12)
print(time.time() - start)