Part A Write a function which: is named read_file_contents takes a string pathname as an argument returns a single strin
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Part A Write a function which: is named read_file_contents takes a string pathname as an argument returns a single strin
Part A Write a function which: is named read_file_contents takesa string pathname as an argument returns a single string thatcontains all the contents of the file Don't import any additionalpackages. If I have a file random_text.txt, I'll give the full pathto this file to the function: contents =read_file_contents("random_text.txt"), and I should get back asingle string contents that contains all the contents of the file.NOTE: Your function should be able to handle errors gracefully! Ifan error occurs when trying to read from the file, your functionshould return None (note the capitalization of the firstletter).
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!