简体   繁体   中英

How to ignore specific characters in string

I have these variables

m1 = 'ZZZZZ'

m2 = 'Z___Z'

m3 = 'ZZZZZ'

that represent a maze. When I print these strings out, I want it to ignore the underscores and replace them with spaces. How can I achieve this?

You can use .replace() :

For example,

'Z___Z'.replace('_', ' ')

will output:

Z   Z

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM