|
Server IP : 10.128.40.6 / Your IP : 216.73.217.114 Web Server : Apache System : Linux webd006.cluster128.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : logmcpe ( 111175) PHP Version : 7.3.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/logmcpe/www/MC/temp/1004/../8749/../1925/../../../TMCPRO/pages/python/python 2/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
# -*- coding: utf-8 -*-
"""
Created on Wed Jul 27 20:03:18 2022
@author: pro
"""
x = 1
y = 3
s = 1+ 3
print(x!=y)
prenom = "yassin"
print(prenom)
def f_function(x,y):
f = x**2 + y
return f
print(f_function(2, 4))
def enrgie_g(m , h , g=9.2 , limite = 50):
e = m * h * g
if e > limite:
print("superieur")
else:
print("inferieur")
enrgie_g(4, 1)
def signe(x):
if(x>0):
print(x," est positif")
elif(x==0):
print(x , " est null")
else:
print(x," est negatif")
signe(-6)