Computer Science, asked by kavita2251592, 9 months ago

please help me by sending ...the coding of the progrqm........​

Attachments:

Answers

Answered by shivakumarjagadish12
2

Answer:

class Security:

def __init__(self):

self.n = ''

self.h = int

self.r = ''

self.w = ''

def get(self, n, h, r, w):

n = input("Enter your name: ")

h = int(input("Enter the no. of hours: "))

r = int(intput("Enter the rate of the wages: "))

def calwage(self):

global w

w = r*h

def display(self):

print(f'''

Number of hours | Rate

up to {h} | {r} per hour

''')

s = security()

s.display()

hope it helped ya

Similar questions