mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-22 05:37:36 +00:00
format call removed
This commit is contained in:
parent
187f4da98a
commit
8c1d01684d
@ -209,7 +209,7 @@ if __name__ == "__main__":
|
|||||||
if linked_list.delete(data):
|
if linked_list.delete(data):
|
||||||
print(f"Node with data {data} deleted successfully")
|
print(f"Node with data {data} deleted successfully")
|
||||||
else:
|
else:
|
||||||
print("Node with data {} not found in the list".format(data))
|
print(f"Node with data {data} not found in the list")
|
||||||
elif choice == "4":
|
elif choice == "4":
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user