-
Posts
6033 -
Joined
-
Last visited
-
Days Won
23
Content Type
Profiles
News
Forums
Blogs
Gallery
Events
Everything posted by CoderDrag0n8
-
TEST
TOMMORROW
APHuG
ESSAY OUTLINE
DUE TOMMORROW
English (BOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO) (and my teacher sucks)
I LEAVE NOW
HOMEWORK (PAIN)
-
IM A PUNK ROCKER YES I AM
Spoilercouldn't think of any other references for your pfp change, sorry
-
IVE DONE IT
I HAVE CREATED A NON-NEWTONIAN MAIC SYSTEMS!
And it is specifically an Oobleck one, just how I wanted!
-
Fun Coding Fact: strings are lists!
string = "hi" print(string[0])
prints out:
h
(also @SpiritOfWrath look at this):
Spoilerdef rangeLength(list): return(range(len(list)) list = [1,2,3,4,5,6] #etc, etc for i in rangeLength(list): #put code here
the python editor is really weird
- Show previous comments 5 more
-
-
list1 = [1, 2, 3, 4] list2 = ["a","b","c","d"] print(zip(list1,list2)) #returns [1, "a", 2, "b", 3, "c", 4, "d"]
-
