"""
Topic 06: File Handling & JSON - EASY Exercises (10)
"""
# Exercise 1: Create a file named 'hello.txt' and write "Learning Python is fun!" into it.
# Write your code below:
# Exercise 2: Read the content of 'hello.txt' and print it to the console.
# Write your code below:
# Exercise 3: Append "I am learning file handling today." to 'hello.txt'.
# Write your code below:
# Exercise 4: Read 'hello.txt' line by line and print each line with a line number.
# Write your code below:
# Exercise 5: Create a list of 5 names. Write each name on a new line in a file named 'names.txt'.
# Write your code below:
# Exercise 6: Count the number of characters in 'hello.txt'.
# Write your code below:
# Exercise 7: Create a dictionary with your personal info and save it as 'profile.json'.
# Write your code below:
# Exercise 8: Read 'profile.json' and print only your name from the dictionary.
# Write your code below:
# Exercise 9: Use json.dumps() to convert a list of fruits to a JSON string and print it.
# Write your code below:
# Exercise 10: Check if a file named 'non_existent.txt' exists. Print "Found" or "Not Found".
# Hint: Use the 'os' module.
# Write your code below: