135201
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
Please direct me:
I want to write a Steam script that finds the rarest floats for CS:GO skins. What's the best approach?
I'd be very happy to know.
Yepp
He/she
Owner or admin in hindi python telegram
@usernamestring
It seems that you're trying to create a program that lists all prime numbers in a given range. Can I know your issue so I can help you better?
Читать полностью…
Python groups in other languages
(⚠️Not managed by us ‼️)
Arabic @arabipython
Azerbaijani @azepug
Chinese @pythonzh
French @python_francais
German @pythonde
Hebrew @pythonisrael
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.
Could someone please recommend the course related data analysis using python?
Читать полностью…
I hardly suggest you to not use videos.
Videos make you follow steps you may not understand, and once you get stuck, they proceed without you understanding. So you have to spend double of the time looking up for a solution online etc while books are more explainatory and guide you, making you understand each single word.
This is not a Python specific question, please delete your offtopic message, move to @PythonOfftopic and ask there.
Читать полностью…
I see. Feel free to ask in the group if you've any difficulties in Python. Good luck with your coding!
Читать полностью…
Rules in our groups are strictly enforced. It is strongly recommended to read our rules before engaging in any other activity!
Читать полностью…
print("введите диапазон")
start = int (input ())
stop = int (input ())
for d in range(start, stop + 1):
for k in range (2, d//2):
if (d%k == 0):
break
elif (k == d//2-1):
print (d)
Start with root, compare value with root
if less
- recurse on root.left
else
- recurse on root.right
When at max depth, add it there
Your question is too broad to be answered here. This group focuses on solving specific issues. Here are some suggestions:
• Search the web for information related to your issue and come back if you encounter a specific problem.
• Narrow down your question to a specific issue if you already have one.
• Consider deleting your question here and moving it to @pythonofftopic, where open-ended questions are more acceptable.
Python groups in other languages
(⚠️Not managed by us ‼️)
Arabic @arabipython
Azerbaijani @azepug
Chinese @pythonzh
French @python_francais
German @pythonde
Hebrew @pythonisrael
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.
Rule 5️⃣: To share code or error tracebacks, use an online pasting service like:
- https://dpaste.org
- https://hastebin.com
- https://bin.kv2.dev
If you posted a wall of text, go back and delete it.
Totally agree, books give you that solid understanding.
Читать полностью…