|
Server IP : 10.128.40.6 / Your IP : 216.73.217.62 Web Server : Apache System : Linux webd006.cluster128.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 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 (0705) : /home/logmcpe/MC/../www/mcg/plugins/jszip/../../.github/../PMP/../pages/UI/../python/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
# -*- coding: utf-8 -*-
"""
Created on Tue Apr 19 17:15:53 2022
@author: pro
"""
f = open("nv_fichier", "w")
f.write("Bonjour yassine trés bien continuer comme ca ")
f.close()
f = open('nv_fichier', 'r')
print(f.read())
with open("nvf","w") as f :
for i in range(10):
f.write("le carré de {} est {} ".format(i, i**2))
# print(f.read())