LearningPy/main.py

10 lines
188 B
Python
Raw Normal View History

2022-11-30 16:59:34 +00:00
#String tests
2022-11-30 17:15:58 +00:00
a = " !Hello World! "
print(a.upper())
print(a.lower())
print(a.strip())
#strip(str_of_targ)
print(a.strip((" !")))
print(a.replace("H", "J"))
print(a.split(" "))