|
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 Thu Oct 13 19:29:45 2022
@author: pro
"""
lis = []
with open('tp.txt','w') as f :
for i in range(10):
f.write('{}^2 = {} \n'.format(i, i*i))
with open('tp.txt', 'r') as f :
# print(f.read())
a=f.readlines()
for i in a:
lis.append(i.strip())
print("--",i)
print("la liste ")
print(lis)