f=5
r=12
my_var=f+r
x=4
print(my_var)
d= 'fantastic'
print(d)
print(f)
print(my_var-x)
print(type(x))
if f+r+x<20:
print('Lila is a big shit') #True
else:
print('Robin is the best at chess')
def myfunc():
print('Hello la team') #J'aime la vie
global j
j=16
myfunc()
print(f-r,my_var*x)
print(d)
print(j)
myfunc()
def myfunc2():
x=2
y=16
if x+2*y>30:
print("You won")
else:
print('Try again')
myfunc2()
def myfunc3():
global t
t= 'Robin est le meilleur aux échecs'
print(t)
h=19
g=20
if h>g:
print('CACA')
else:
print(type(t))
myfunc3()
v=1.5
print(type(v))
To embed this project on your website, copy the following code and paste it into your website's HTML: