#๐Ÿ”’ Getting 629 entries instead of 1024

14 messages ยท Page 1 of 1 (latest)

hasty parcelBOT
#

@modest urchin

Python help channel opened

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.

modest urchin
#

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))
heavy rampart
#

{} is not a list
and dont call a variable list

#

using list as a name is bad because its a built in type

rose meteor
#

since it's a dict, if you have duplicate keys they would overwrite eachother

modest urchin
rose meteor
#

!e

test = {}

test['a'] = False
test['b'] = False
test['a'] = False

print(len(test))```
hasty parcelBOT
rose meteor
#

length 2 even though i added something 3 times

modest urchin
rose meteor
#

since there was a duplicate key

hasty parcelBOT
#
Python help channel closed

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