# Python writing files (.txt, .json, .csv) # --------- .txt --------- txt_data = "I like pizza!" file_path = "output.txt" try: with open(file_path, 'w') as file: file.write(txt_data) print(f".txt file '{file_path}' has been created successfully") except FileExistsError: print("That file already exists") # --------- .json --------- import json employee = { "name": "Spongebob", "age": 30, "job": "Cook" } file_path = "output.json" try: with open(file_path, 'w') as file: json.dump(employee, file, indent=4) print(f"JSON file '{file_path}' has been created successfully") except FileExistsError: print("That file already exists!") # --------- .csv--------- import csv employees = [["Name", "Age", "Job"], ["Spongebob", 30, "Cook"], ["Patrick", 37, "Unemployed"], ["Sandy", 27, "Scientist"]] file_path = "output.csv" try: with open(file_path, "w", newline="") as file: writer = csv.writer(file) for row in employees: writer.writerow(row) print(f"csv file '{file_path}' was created") except FileExistsError: print("That file already exists!")
@rayhan55374 ай бұрын
Been learning python through your 12 hr vid and its helped alot
@Stephen474 ай бұрын
Nuke codes folder lmao, bro is the cultured teacher xD
@hybridsimrig3 ай бұрын
Literally the best python teacher on KZbin!
@rajushah87484 ай бұрын
Thank you bro code . I know nothing about python yet , I'm currently learning JavaScript through your free JavaScript course. And I'm here to thank you ❤❤❤❤
@YuttanaNoiphlai-k5w4 ай бұрын
Лаба твои инсайды просто бомба! Жду новых идей.
@AbelFikadu-lt1ei4 ай бұрын
Thank you bro code that was very helpful!!!
@PrinceVegeta27102 ай бұрын
3:18 Nuclear Launch Codes 😂😂😂😂😂😂😂😂 FBI OPEN UP ! 🚓🚓
@morrixbongs89964 ай бұрын
New in here... Eager to learn about coding
@MarianoBustos-i1f4 ай бұрын
much appreciated Bro
@hoanginh14374 ай бұрын
thats useful bro can you do a free course about data structures and algorithms java pls bro i beg you
@OldSoulSerenade7504 ай бұрын
Thanks bro
@_MEga_Bit4 ай бұрын
Bro is a souls player
@t.o.x.i.cplayers20954 ай бұрын
Hi this video is 🎉🎉
@theherok_plays4 ай бұрын
I was gonna like the video but it has 69 likes so i wont ruin it, anyways W vid