-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStrings.py
45 lines (32 loc) · 992 Bytes
/
Strings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
myStr = "hola mundo"
#dir -> obtiene la lista de funciones disponibles de un string (en este caso)
#print (dir(myStr))
# print (myStr.upper())
# print (myStr.lower())
# print (myStr.swapcase())
# print (myStr.capitalize())
# print (myStr.replace("hola", "Hello").upper())
# print (myStr.count("o"))
# print (myStr.count(" "))
# print (myStr.startswith("hola"))
# print (myStr.endswith("Mundo"))
# #separa a partir de un espacio (por defecto)
# print (myStr.split())
# #separa a partir de una coma
# print (myStr.split(','))
# # buscar caracteres dentro del string
# # y devuelve la posicion del primer caracter encontrado
# print (myStr.find('o'))
# # largo de la cadena
# print (len(myStr))
# # obtener el indice del caracter
# print (myStr.index('u'))
# # es numero
# print (myStr.isnumeric())
# # es alfanumérico
# print (myStr.isalpha())
print (myStr[1])
print (myStr[-2])
print ("My name is: " + myStr)
print (f"My name is: {myStr}")
print ("My name is: {0}".format(myStr))