def leet_from_str(s: str) -> str:
	"""Converts a word or setnence to leet.
		:param s: An average string.
		:return: The contents of the string, converted to leet.
	"""
	
	leet_alphabet = [
		"4",
		"8",
		"(",
		"C-",
		"3",
		"|",
		"C-",
		"#",
		"1",
		"]",
		"|<",
		"|_",
		"[V]",
		"/V",
		"0",
		"|7",
		"9",
		"|2",
		"5",
		"7",
		"|_|",
		"\\/",
		"\\N",
		"><",
		"'/",
		"2"]


	s = s.lower()
	toret = ""
	ord_a = ord('a')
	ord_z = ord('z')
	
	for ch in s:
		ord_ch = ord(ch)
		
		if (ord_ch >= ord_a
		and ord_ch <= ord_z):
			toret += leet_alphabet[ord_ch - ord_a]
		else:
			toret += ch
		...
	...
	
	return toret


print(leet_from_str("Baltasar"))