Marcus Schopen writes: > how do I cut all letters in a string? > The string is "6.0b". > Before using float ("6.0b") I'd like to change "b" to "02" or just cut > all letters. Look at "string.translate", "string.replace" (--> Python library reference) and slicing (--> Python language reference). Dieter