Basic text style
CAVEAT: Use this feature sparingly
Remember to give credit.
Photo credit: Dayne Topkin (Unsplash)
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Cumque quas
quidem animi, architecto blanditiis...
To reverse order,
simply switch the code snippets.
Data type | Example values |
---|---|
Integers | 2 44 -3 |
Floats | 3.14 4.5 -2.0 |
Booleans | True False |
Strings | '¡hola!' 'its python time!' |
Click the icon in the upper right of the code box to copy the code.
def add_numbers_between(start, end):
sum = 0
for n in range(start, end):
sum += n
return n
add_numbers_between(5, 10)
Hello World.
body {
background-color: #ffffff;
}
function helloWorld(){
let name = 'GDI';
alert("Hi, " + name)
}
Try editing the code!
function helloWorld(){
let name = 'GDI';
alert("Hi, " + name);
}