Code: Select all
list_of_some_free_forum_software = list(("phoBB", "SMF", "MyBB", "miniBB", "ClownBB"))
print(list_of_some_free_forum_software)
print("Let's remove the one that doesn't exist probably.")
list_of_some_free_forum_software.pop(4)
print(list_of_some_free_forum_software)
