Ari Telford
@AriTelford1
When you click the space bar, a random name will be generated. Please note that for this to work, you will have to click run, then click on the screen
HTML, CSS, JS
EthanJustice You may want to put the jQuery script link in the bottom of the body and not the head.4 years ago
I'm trying to make a program that will make a cat meow and display the text 'Meow' when the space button is pressed. My only problem is that only the
mwilki7 Try adding this:
meowSound = pygame.mixer.Sound('meow.wav') # wherever you saved your "meow" sound
meowSound.play()
`4 years ago
Introduction
Python is an easy language to learn with super easy syntax. Here's a basic program
print('Hello world')
This program is pretty self expla
AllAwesome497 Also- you can put quotation marks in a quoted string, you just need to use backslashes(\).
EG:
print("John said \"Hello, world\" and walked away.")4 years ago