27 June 2026
28 June 2026
Replymessage unavailable
"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!
El MenchoDoes python works on iphone
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)
El MenchoDoes python works on iphone
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
Sergprint(name[-2::-2])
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
𝙼𝚘𝚊𝚣 𝙼𝚊𝚑𝚎𝚛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
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)