s = "hello"
for c in s:
	print(c)
	

# output
# h
# e
# l
# l
# o
c.lower()
c.upper()
c.isalnum()
added = 'h' + 'e' + 'l' + 'l' + 'o'

print(added)

# output
# hello
# Method 1: Using string slicing
s = "hello"
reversed_s = s[::-1]
print(reversed_s)  # Output: olleh

# Method 2: Using reversed() function and join()
s = "hello"
reversed_s = ''.join(reversed(s))
print(reversed_s)  # Output: olleh