Datos interesantes sobre strings en Python | Serie 1
1. Las strings son inmutables Una vez que se define una string, no se puede cambiar. # Python3 program to show that # string cannot be changed a = ‘Geeks’ # output is displayed print(a) a[2] = ‘E’ print(a) # causes error Producción: # Python3 program to show that # a string … Continue reading «Datos interesantes sobre strings en Python | Serie 1»