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
and also
print (name[4::-2])
actually, i didnt know that i can type the steps with -ve value (-2). i thought it must be positive
It is not recommended to use or learn Python on a mobile device. You will run into difficulties and issues you wouldn't have on a PC or server. That said, if you still insist to use Python on your mobile phone, you may want to check out the following mobile applications:
- Pydroid 3
- Termux
- QPython
If you wish to install and run, like we do on the desktop then now, but yes you can view flask based apps on safari (in that case also, flask app must be hosted on a server and safari will only render the page)
Читать полностью…
Im a beginner and need help in printing the third one!
How can I reverse it ??
-----------------------
name = "Elzero"
# Needed Output
# "lze"
# "Ezr"
# "rzE"
print(name[1:4])
print(name[::2])
print (name[]) # rzE
-----------------------
Hello guys...
I have a critical issue in one app that needs assistance,
I want to detect fake GPS in a web app (ReactJS) on the frontend and in the backend in Node (but if there is a perfect package in Python, I can create a microservice to detect fake GPS)... Please suggest to me if there are any Python package which works well to detect mock GPS.
Note: if the user changes location by approximately 50-100 km, then it should also work.
Thanks
mastering python means you mastered every field that python can work with and that's impossible for a human
Читать полностью…
But isn't their documentation what you're looking for when you look for n8n?
Читать полностью…
That was the best answer I could come up with, honestly.
Читать полностью…
Then maybe that system's documentation holds the answer.
Читать полностью…
What have you tried to do, to solve that issue?
Show your code (read rule 5️⃣ first) and explain where, and why, you're stuck.
yeah, it means stepping end-to-beginning. Otherwise we had to revert the list first (to use positive values only), but that takes additional time and also could affect space complexity - O(n)
Читать полностью…
"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!
Читать полностью…
Hi look wtf how integrated flutter - django
https://youtube.com/watch?v=UEId_vq6b3g&si=uDvIX0_QTu0l-mB3
You guys are accusing this person as he said something wrong, if mastering does not mean having a good command, then I'm curious to know what M.Sc mean.
Читать полностью…
Sorry if I annoyed you till now
I'm not looking for a documentation, I was talking about some other things like
N8N
There's no such thing as a work flow in Pythons' documentation.
Читать полностью…
Bro
A workflow is a system for managing repetitive processes and tasks which occur in a particular order.
Hey guys, i have learned python and I wanna learn workflow with python but I don't know what to learn and where to start.
Could you please guide me ?
Kind of do the same thing logically
If you want to create a copy of something specifically just use .copy()
If you want to maybe slice a list or dataframe I'd say [:] makes more sense