PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#code stuff for noobs
#this is a print statement
print("comment your opinion!")
#this is a variable
fish_name="bloob"
#you can print it too
print(fish_name)
#this, with the hashtag in the beginnning, is a comment
#next, this is a worm
print("(:> l l)")
#you can also do emojis in code
print("look at this worm! not that one up there--> 🪱🪱🪱🪱🪱🪱")
print("🦋🐛🪱🪰🕷️🐜🐝🐞🐌🦟🪳")
#you can also input and print
noob_word=input()
print(noob_word)
#getting harder this is a list. you need to call it before you can use it.
def fish(jett):
fish=[jett, justin, bloob]
print(fish)
print(fish[1])
#all noobs who see this have been ranked to pros with python!
print("\⚔️you noobs have become pros!⚔️/")
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run