Hello.py

Status
Not open for further replies.

achilles55

Newbie
Joined
Mar 6, 2024
Messages
5
Reaction score
4
class CyberSecurityAnalyst:
def __init__(self, name, expertise):
self.name = name
self.expertise = expertise

def introduce(self):
intro = f"Hello, I'm Adrian, your friendly neighborhood Cyber Security Analyst!
expertise_info = I specialize in Network and IT infrastructure security and my superpower is keeping your data safe and sound.
 
class CyberSecurityAnalyst:
def __init__(self, name, expertise):
self.name = name
self.expertise = expertise

def introduce(self):
intro = f"Hello, I'm Adrian, your friendly neighborhood Cyber Security Analyst!
expertise_info = I specialize in Network and IT infrastructure security and my superpower is keeping your data safe and sound.
Welcome to BHW @achilles55
 
Welcome to BHW.
 
Code:
def welcome_message(username, community_name):
    return f"Welcome, {username}, to {community_name}! We're glad to have you here."

def main():
    community_name = "BHW"
    username = "achilles55"
    print(welcome_message(username, community_name))

if __name__ == "__main__":
    main()

Welcome, achilles55, to BHW! We're glad to have you here.
 
Status
Not open for further replies.
Back
Top