207k views
2 votes
Pls fix my code for free thank

# Function to read data from a text file and create a 2D array
def red_text_file(file_name):
try:
with open(file_name, '') as file:
lines = file.readlines()
# Splitting lines and creating a 2D array
data = [line.strip().split(',') for line in lines]
return data
except FileNotFoundError:
print("File not found.")
return None
# Function to check and print details based on user input
def check_details(data):
print("Welcome! Please enter your details.")
Name = int(input("Enter your name: "))
age = (input("Enter your age: "))

found = True
for person in data:
if person[0] == name and int(person[1]) == age:
print("Details found:")
print("Name:", person[0])
print("Age:", person[1])
print("Occupation:", person[3])
found = True
break

if not found:
print("Details not found.")

# Function to display a 2D array
def display_2d_array(data):
Print("Data in the file:")
for row in data:
print(', '.join(row))

# Main function
def main():
file_name 'nameage.txt' # Replace with your file name

# Reading data from the text file
data = read_text_file(file_name)
if data:
display_2d_array(data)
check_details(data)

# Execute the main function
if __name__ == "__main__"
main()

User Stephband
by
7.1k points

1 Answer

7 votes

Final answer:

The provided code contains several errors that need to be fixed. Here are the corrections:

Step-by-step explanation:

  • Change the mode in the open() function from an empty string to 'r' to specify that the file is being read.
  • Fix the variable name from Name to name in the check_details() function to match the variable used in the loop.
  • Fix the syntax error in the line Print("Data in the file:") by changing Print to print (lowercase).
  • Add an equal sign between file_name and 'nameage.txt' in the line file_name 'nameage.txt' in the main() function.
  • Add a colon after if __name__ == "__main__" to complete the if statement.
  • 1. The open() function requires a file mode to specify how the file should be treated. In this case, a mode of 'r' (read) is appropriate.
  • 2. The variable names Name and name are case-sensitive. It should be consistent throughout the code.
  • 3. The Print() function is not recognized in Python. The correct function name is print() (lowercase).
  • 4. The file_name variable assignment is missing an equal sign (=) to assign the value 'nameage.txt' to it.
  • 5. The if __name__ == "__main__" statement needs a colon at the end to complete the if statement.
User Gnawme
by
7.8k points