“Comment réécrire le fichier dans Python” Réponses codées

python écrivez dans le fichier

file = open(“testfile.txt”,”w”) 
 
file.write(“Hello World”) 
file.write(“This is our new text file”) 
file.write(“and this is another line.”) 
file.write(“Why? Because we can.”) 
 
file.close() 
Misty Macaw

Ouvrez le fichier texte dans Python

f=open("Diabetes.txt",'r')
f.read()
Grieving Goshawk

Comment réécrire le fichier dans Python

def baseboard(width, length, baseboardcost):
    perimeter = 2 * (length + width)
    return perimeter * baseboardcost

def carpet(width, length, carpetcost):
    return width * length * carpetcost
width = float(input('What is the width of the room? (ft) '))
length = float(input('What is the length of t5he room? (ft) '))
totalbaseboardcost = float(input('Input the cost of a linear foot of baseboard ($) '))
carpetcost = float(input('Input the cost of a square foot of carpet($) '))
totalcost = baseboard(width, length, totalbaseboardcost) + carpet(width, length, carpetcost) + 500
print ('For a room of width',width,'and length',length,'the cost of the reno is $',totalcost,)
Keorify

Réponses similaires à “Comment réécrire le fichier dans Python”

Questions similaires à “Comment réécrire le fichier dans Python”

Plus de réponses similaires à “Comment réécrire le fichier dans Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code