Witaj :)
Kod:
class drukowaneLitery(object):
def __init__(self):
self.x = ""
def getString(self):
self.x = input("Podaj wyraz, który mam przekształcić na drukowane litery: ")
def printString(self):
print(self.x.upper())
def test(x):
return x.upper()
strObj = drukowaneLitery()
print("Przykładowa wartość dla wyrazu \"maciej\":", test("maciej"))
strObj.getString()
strObj.printString()