El ^ es un operador en julia que se usa para repetir la string especificada con el número especificado de veces.
Sintaxis:
^(s::Union{AbstractString, AbstractChar}, n::Integer)
Parámetros:
- s::Union{AbstractString, AbstractChar}: strings o caracteres especificados
- n::Integer: Entero especificado
Devoluciones: Devuelve una nueva string repetida.
Ejemplo 1:
Python
# Julia program to illustrate # the use of operator ^ # Get repetition of different strings println("GFG " ^3) println("GeekforGeeks " ^2) println("abc " ^2) println("a " ^4)
Producción:
GFG GFG GFG GeekforGeeks GeekforGeeks abc abc a a a a
Ejemplo 2:
Python
# Julia program to illustrate # the use of operator ^ # Get repetition of different strings println("1-" ^3) println("123 " ^2) println("5& " ^2) println("0 * 0 " ^4)
Producción:
1-1-1- 123 123 5& 5& 0*0 0*0 0*0 0*0
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA