Posts by Matheus Marmo • 33 points
1 post
-
3
votes2
answers798
viewsQ: python - Delete string end characters
Is there any way to delete characters at the end of a string in python? For example: a = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" B = "ABCDEFGH" I need string "a" to be the same size as "b," so that’s possible?…