[ create a new paste ] login | about

Recent Pastes:

Python, pasted 17 minutes ago:
1
2
3
4
5
class Vehicle:
    def __init__(self, name, color, wheel):
        self.name = name
        self.color = color
        self.wheel = wheel
...
view (22 lines, 6 lines of output)
Python, pasted 17 minutes ago:
1
2
3
4
5
class Vehicle:
    def __init__(self, name, color, wheel):
        self.name = name
        self.color = color
        self.wheel = wheel
...
view (22 lines, 6 lines of output)
Python, pasted 22 minutes ago:
1
print("Hello World")
view (1 line, 1 line of output)
Python, pasted 33 minutes ago:
1
2
3
4
5
from math import *

class PhanSo:
    def __init__(self, a, b):
        self.tu = a
...
view (42 lines, 6 lines of output)
Python, pasted 47 minutes ago:
1
2
3
4
import numpy
from math import *

# Câu 1
...
view (451 lines, 2 lines of output)
Python, pasted 1 hour ago:
1
2
3
4
5
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import pyplot

#東京型x
...
view (113 lines, 2 lines of output)
C, pasted 1 hour ago:
1
2
3
4
5
#include <stdio.h>

int main(void) {
    printf("Value is: %d\n", 0x123);
    return 0;
...
view (6 lines, 1 line of output)
C, pasted 1 hour ago:
1
2
3
4
5
#include <stdio.h>

int main(void) {
    printf("Value is: %d\n", 0123);
    return 0;
...
view (6 lines, 1 line of output)
C, pasted 1 hour ago:
1
2
3
4
5
#include <stdio.h>

int main(void) {
    printf("Value is: %d\n", 5);
    return 0;
...
view (6 lines, 1 line of output)
C, pasted 1 hour ago:
1
2
3
4
5
#include <stdio.h>

int main(void) {
    printf("It's working\n");
    return 0;
...
view (6 lines, 1 line of output)