Commit e95cfffe by likorn

Fixed the document's path

parent 44793f38
Showing with 1 additions and 1 deletions
......@@ -2,6 +2,6 @@ user_input = input("Please enter a text between 30 and 50 characters\n")
while len(user_input) < 30 or len(user_input) > 50:
user_input = input("The text is too small or too short. Try again\n")
print(str(len(user_input)))
file = open("C:/Users/likorn/Documents/lab5/task3.txt", "w")
file = open("task3.txt", "w")
file.write(user_input)
file.close()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment