Jayaram18 / Jayaram18/python-random-quote
Read from a file
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- Python
- Estrellas
- 0
- Forks
- 0
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
Now we're ready to really build our quote bot. To test things out, we'll read all the quotes from a file and print the first one.
First, you can remove our test quote, the print statement on line 2. You can either comment it out by adding a `#` at the start of the line, or remove it completely.
Next, remove the other comments by deleting `#` from the start of the other four lines to get Python code like this:
```
f = open("quotes.txt")
quotes = f.readlines()
f.close()
print(quotes)
```
Here we are opening the `quotes.txt` file, reading all the lines into a new _variable_ called `quotes`, then closing the file (defined by the variable `f`). Finally, we print out the quotes.
You can run this code and we'll get a dump of _all_ the quotes in the quotes file. That's because Python stored them all in an _array_, which is a single variable that holds a list of values.
## Print the first element of an array
Since we only want one quote, we need to edit our code to print only the first value in the `quotes` array.
In your code, find the print line and add this special modifier `[0]` so that the line now reads:
` print(quotes[0])`
The square brackets tell Python that we want a specific item in the array. Since it starts counting at zero, we've grabbed the first item.
## Comment with the first quote
Run your code and copy the value to your clipboard.
Paste the quote as a comment here and I'll follow up with next steps!
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
Sigue el ejemplo de Python del issue y utiliza quotes.txt como archivo de entrada. Ejecuta el programa y verifica que solo imprime la primera cita; después pega esa cita como comentario, tal como se solicita.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- python
- Área
- cli
- Tipo de issue
- Nueva funcionalidad
- Dificultad
- 1/5
- Tiempo estimado
- Menos de una hora
- Estado de actividad
- Estancado
- Claridad
- Bien especificado
- Aptitud para principiantes
- 35/100