a=87
b=8.93
c="65"

print(type(a))
print(type(b))
print(type(c))

d=989
e=765.5
print(float(d))
print(str(e))

ab=654
cd=45643
print(min(a,ab,cd))
print(max(a,ab,cd))

print(bin(ab))
print(oct(ab))
print(hex(ab))

nombre="SantiagoEstyvenGordilloSarmiento"
print(len(nombre))

edad= int(input("¿Cual es tu edad?"))

print("Tu edad es de",edad)

print("Y en 28 años tendras",edad+28, "años")

import random
print(random.randint(1,100))

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: