17 November 2025
id 1069461970This is the correct code
for i in range(1, 6):
for j in range(1, i + 1):
print(j, end=" ")
print()
We help others to find their issues, not solve their problems for them. Like in explanation what the error means that he sees, so that he'll be able to fix issue of that kind on his own. Even if, as it seemed, he copies code from somewhere else.
ʑɑʑ Hey,
I want to obfuscate my python folder codes cab anyone help me ?
You can Google how to obfuscate python code on Google try something and then come here but I personally don't recommend it, because python is interpreted if you want to hide code you choose the wrong language
Charly RománYou can Google how to obfuscate python code on Google try something and then come here but I personally don't recommend it, because python is interpreted if you want to hide code you choose the wrong language
I already googled bro trying since 3 hours can you help me ?? I need to hide the codes
ʑɑʑ I already googled bro trying since 3 hours can you help me ?? I need to hide the codes
What have you tried and what are you getting?
ʑɑʑ I already googled bro trying since 3 hours can you help me ?? I need to hide the codes
Just use another language, Python is a bad choice if you insist on "hiding" your code
id 726657100Hallo guys i just want to know if we use( while true)in coding without (break) what will happen to My computer. My friend allways tell me to do it.just want to know couse i'm beginner
while True means do this code forever - aka infinite loop
while expects a condition to be true in order to run the loop
You hardcode it with True so the "condition" is always - well true
It usually bad to do that without any way of canceling them (which is why break is used)
You can try running your program without a break and see what happens (dont let it run for too long though, you might run out of memory)
id 7702652451How I make python api or other things
Have you googled this or did some research yourself before asking here?
Charly RománHave you googled this or did some research yourself before asking here?
Sir when I have database then how I make api or termux kalilinux tool work
id 7702652451Sir when I have database then how I make api or termux kalilinux tool work
And you googled or did research before asking here?