You will be muted until you read the rules. Read them! @Rules_for_Python A group about the Python programming language. Offtopic things go here: @pythonofftopic Resources to learn python: @pythonres Group for Hy: @hylang Selenium: @SeleniumPython
Rule 5️⃣: To share code or error tracebacks, use an online pasting service like:
- https://dpaste.org
- https://hastebin.com
- https://bin.kv2.dev
I have a program using Tkinter that uses a database. One of its functions is to search for the ID of a registered person and display their photo and information on the screen. However, when I change the search ID, the photo remains the same and does not return to the default photo (person.png)
Читать полностью…Hey I search a python project for learning. Anybody have on GitHub
Читать полностью…hello everyone. Is it possible to make a script on python, that when different kind of pdf or word docx file with table uploaded cab i get all data in clear, i want save to database.
Читать полностью…Python groups in other languages
(⚠️Not managed by us ‼️)
Amharic @python_amharic
Arabic @arabipython
Azerbaijani @azepug
Chinese @pythonzh
French @python_francais
German @pythonde
Hebrew @pythonisraelHindi @pyhindi_ot
Tamil @pythontamilcommunity
Indonesian @pythonid
Italian @python_ita @pythonita
Kazakh @python_kz
Malaysia @pythonmalaysia
Persian @pyfarsi
Portuguese @pythonbr
Russian @ru_python_beginners @ru_python @python_scripts
Spanish @PythonEsp
Swahili @python_eafrica
Turkish @python_tr
Uzbek @python_uz
If you have an active and well managed group that you want to be listed there, ask in the Meta group, link in the rules page.
I think the error is in . join
It should be without space, .join() is a string method
I am beginner to the python I want to learn python please any one help me to learn python
Читать полностью…Take a screenshot, upload it to imgur.com or similar site and share the url here, I really doubt you are having anindentation error with that code, unless you have more coe witht different identation
Читать полностью…import isnt a built in bash command, export is tho. If you are trying to import from a module it has to be done inside the python file.
Читать полностью…no, it is not copied correctly, in my visual studio everything is fine
Читать полностью…also I don' t recommend you to use one space as indentation try to follow common standards
Читать полностью…The excerpt is this:
imagem_string = dados[19]
imagem = imagem_string
imagem = Image.open(imagem)
imagem = imagem.resize((140,140))
imagem = ImageTk.PhotoImage(imagem)
l_imagem = Label(framePessoa, image=imagem, bg=co1)
l_imagem.image = imagem
l_imagem.place(x=0, y=0)
No google library. Use google to search for those libraries with the mentioned keywords.
Читать полностью…Google python library to extract tables from pdfs
and python library to read docx file format
.
"Hi", "hello" and all other socializing goes to @pythonofftopic! Feel free to chat there, and ask for help with Python code here. Don't forget to delete your message from this group!
Читать полностью…https://wiki.python.org/moin/BeginnersGuide/NonProgrammers
Читать полностью…def get_row(result_dice: int):Читать полностью…
slot_values = {
1: ('1'),
2: ('2'),
3: ('3'),
4: ('4'),
5: ('5'),
6: ('6'),
}
return ', '. join(slot_values.get(result_dice)).capitalize()
def get_point(result_dice: int):
if result_dice in (2, 4, 6):
return 2
else:
return -2
def get_result_text(result_dice: int, bid: int):
result = get_point(result_dice=result_dice)
point = bid * result_dice
combination_text = get_row(result_dice=result_dice)
if result > 0:
text_for_gamer = f'Your Combination: \r\n{c}'
well share again the code (properly) and I'll prove that doesn' t show any indentation error
Читать полностью…I saw how you edited the indentation here, which means you original code where you are copying is nor right
Читать полностью…