1 Comment

x = 'Weenis'

y = 'Raptah'

z = 'Deez'

x = x.lower()

y = y.lower()

z = z.lower()

print(x)

print(y)

print(z)

x = x.upper()

y = y.upper()

z = z.upper()

print(x)

print(y)

print(z)

x = 'X' + x[1:]

y = 'X' + y[1:]

z = 'X' + z[1:]

print(x)

print(y)

print(z)

Expand full comment