msgid "" msgstr "" "Project-Id-Version: Tecno Recursos 2023Report-Msgid-Bugs-To:POT-Creation-" "Date:2023-07-20 19:13+0200PO-Revision-Date:YEAR-MO-DA HO:MI+ZONELast-" "Translator:FULL NAME Language:enLanguage-Team:en " "Plural-Forms:nplurals=2; plural=(n != 1)MIME-Version:1" ".0Content-Type:text/plain; charset=utf-8Content-Transfer-Encoding" ":8bitGenerated-By:Babel 2.9.0Report-Msgid-Bugs-To:EMAIL@ADDRESSPOT-" "Creation-Date:2023-07-26 11:40+0200PO-Revision-Date:YEAR-MO-DA HO:MI" "+ZONELast-Translator:FULL NAME Language-Team:LANGUAGE " "MIME-Version:1.0Content-Type:text/plain; charset=utf-8Content-" "Transfer-Encoding:8bitGenerated-By:Babel 2.9.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2024-10-03 17:18+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.0\n" #: ../../source/python-print.rst:9 msgid "La función :py:func:`print`" msgstr "The :py:func:`print` function" #: ../../source/python-print.rst:13 msgid "" "La función `print() " "`__ sirve para" " imprimir textos, números y otros objetos en la pantalla." msgstr "" "The `print() " "`__ function " "is used to print text, numbers, and other objects to the screen." #: ../../source/python-print.rst:17 msgid "" "Es una herramienta muy útil a la hora de encontrar errores de " "programación y para informar del desarrollo del programa." msgstr "" "It is a very useful tool when it comes to finding programming errors and " "to report on the development of the program." #: ../../source/python-print.rst:20 msgid "" "El parámetro **sep** indica qué carácter se va a utilizar para separar " "los distintos objetos que se imprimirán en la pantalla. Por defecto es el" " espacio en blanco." msgstr "" "The **sep** parameter indicates which character to use to separate the " "various objects that will be printed on the screen. Default is white " "space." #: ../../source/python-print.rst:24 msgid "" "El parámetro **end** indica qué carácter se va a utilizar al finalizar la" " impresión. Por defecto es una nueva línea '\\\\n', pero se puede " "sustituir por una cadena vacía '' para que sucesivos ``print`` impriman " "en la misma línea." msgstr "" "The **end** parameter indicates which character to use at the end of " "printing. It defaults to a new line '\\\\n', but it can be replaced with " "an empty string '' so that successive ``print`` prints on the same line." #: ../../source/python-print.rst:29 msgid "Ejemplos::" msgstr "Examples::" #: ../../source/python-print.rst:50 msgid "Ejercicios" msgstr "Exercises" #: ../../source/python-print.rst:52 msgid "" "Escribe un programa que imprima varios números separados por punto y coma" " gracias al argumento ``sep``." msgstr "" "Write a program that prints multiple numbers separated by commas using " "the ``sep`` argument." #: ../../source/python-print.rst:56 msgid "" "Escribe un programa que imprima en una sola línea dos palabras juntas. La" " primera y la segunda palabra se deben imprimir con dos órdenes " "``print()`` separadas." msgstr "" "Write a program that prints two words together on a single line. The " "first and second words must be printed with two separate ``print()`` " "commands." #: ../../source/python-print.rst:61 msgid "Escribe un programa que calcule e imprima la media de tres notas: 5, 8, 9." msgstr "" "Write a program that calculates and prints the mean of three grades: 5, " "8, 9" #: ../../source/python-print.rst:64 msgid "" "Pista: deberás sumar todas las notas dentro de un paréntesis y después " "dividir el resultado entre 3." msgstr "" #: ../../source/python-print.rst:68 msgid "" "Escribe un programa que imprima 'Hola, mundo' en dos líneas distintas con" " una sola orden ``print()``." msgstr "" "Write a program that prints 'Hello world' on two separate lines with a " "single ``print()`` command." #: ../../source/python-print.rst:71 msgid "" "Pista: el caracter '\\\\n' sirve para añadir una nueva línea dentro de " "una cadena de texto." msgstr "Hint: the '\\\\n' character is used to add a new line to a text string." #: ../../source/python-print.rst:75 msgid "" "Escribe un programa que asigne un valor a una variable y que luego " "imprima el valor de la variable en pantalla." msgstr "" "Write a program that assigns one value ​​to one variables and then " "print the value of the variable on the screen." #: ../../source/python-print.rst:78 ../../source/python-print.rst:90 msgid "Pista::" msgstr "Clue::" #: ../../source/python-print.rst:83 ../../source/python-print.rst:96 msgid "Salida::" msgstr "Exit::" #: ../../source/python-print.rst:87 msgid "" "Escribe un programa que asigne dos valores a dos variables y que luego " "imprima sus valores y el valor de la suma." msgstr "" "Write a program that assigns two values ​​to two variables and then " "prints their values ​​and the value of the sum."