Konwertuj ciąg na małe litery w Pythonie
str = 'HELLO'
print(str.lower())
#prints "hello"
ThePokedNoob
str = 'HELLO'
print(str.lower())
#prints "hello"