# Please help me with this problem I’m trying to run the code but it isn’t working?Can anyone explain to me what is happening

**URL:** https://forum.codewithmosh.com/t/please-help-me-with-this-problem-i-m-trying-to-run-the-code-but-it-isn-t-working-can-anyone-explain-to-me-what-is-happening/16034
**Category:** Python
**Created:** [October 24, 2022, 4:59am UTC](https://forum.codewithmosh.com/t/please-help-me-with-this-problem-i-m-trying-to-run-the-code-but-it-isn-t-working-can-anyone-explain-to-me-what-is-happening/16034 "2022-10-24T04:59:50Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Adil\_The\_Nightmare\_9](https://avatars.discourse-cdn.com/v4/letter/a/71e660/32.png) [@Adil\_The\_Nightmare\_9](https://forum.codewithmosh.com/u/Adil_The_Nightmare_9)
#### Post date: [October 24, 2022, 4:59am UTC](https://forum.codewithmosh.com/t/please-help-me-with-this-problem-i-m-trying-to-run-the-code-but-it-isn-t-working-can-anyone-explain-to-me-what-is-happening/16034/1 "2022-10-24T04:59:50Z")

</div>

ask\_password = input("Enter the Master Password: ")

if ask\_password == ‘6055\*\*##@9’:  
print(“You Have Access To The Dark Web. \<:\>”)  
else:  
print(“Access Denied.!!!”)  
breakpoint()

login\_details = input(“”  
" Login Details"  
" Name: "  
" Subject: "  
" Power: “)  
if login\_details.lower() == (” Adil Science Invisibility" ):  
print(“Ok,Thanks login details Saved!!!”)  
else:  
print(“Enter Valid Name, Subject, Power!!!”)

---

<div class="post-metadata">

### Author: ![MTownsend](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.codewithmosh.com/mtownsend/32/6311_2.png) [@MTownsend](https://forum.codewithmosh.com/u/MTownsend)
#### Post date: [October 24, 2022, 6:02am UTC](https://forum.codewithmosh.com/t/please-help-me-with-this-problem-i-m-trying-to-run-the-code-but-it-isn-t-working-can-anyone-explain-to-me-what-is-happening/16034/2 "2022-10-24T06:02:04Z")

</div>

The code seems to validate someone for the dark web and then asks them some other dungeon and dragons looking info. That was about the best I could do to explain what it does.

```python
ask_password = input("Enter the Master Password: ")

if ask_password == "6055**##@9":
    print("You Have Access To The Dark Web. <:>")
else:
    print("Access Denied.!!!")

print("Login Details")
name = input("Name: ")
subject = input("Subject: ")
power = input("Power: ")
login_details = f'{name} {subject} {power}'
if login_details.lower() == ("adil science invisibility" ):
    print("Ok,Thanks login details Saved!!!")
else:
    print("Enter Valid Name, Subject, Power!!!")

```
