“So schreiben Sie die Datei in Python um” Code-Antworten

Python schreiben in die Datei

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

Öffnen Sie die Textdatei in Python

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

So schreiben Sie die Datei in Python um

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

Ähnliche Antworten wie “So schreiben Sie die Datei in Python um”

Fragen ähnlich wie “So schreiben Sie die Datei in Python um”

Weitere verwandte Antworten zu “So schreiben Sie die Datei in Python um” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen