#๐ Getting 629 entries instead of 1024
14 messages ยท Page 1 of 1 (latest)
@modest urchin
Remember to:
- Ask your Python question, not if you can ask or if there's an expert who can help.
- Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
- Explain what you expect to happen and what actually happens.
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
Hello!
list = {}
for x in open(r"C:\Users\Ja\Desktop\informatyka-2024-czerwiec-matura-rozszerzona-zalaczniki\odbiorcy.txt","r").readlines():
y = x.replace("\n", "")
list.update({y: False})
print(list)
print(len(list))
{} is not a list
and dont call a variable list
using list as a name is bad because its a built in type
since it's a dict, if you have duplicate keys they would overwrite eachother
Alrighty, I will keep that in mind
!e
test = {}
test['a'] = False
test['b'] = False
test['a'] = False
print(len(test))```
:white_check_mark: Your 3.12 eval job has completed with return code 0.
2
length 2 even though i added something 3 times
Ohhh, yeah, that makes sense, thank you!
since there was a duplicate key
This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.
๐ Getting 629 entries instead of 1024