Cap. 2 - User input & Type Casting Flashcards

1
Q

La función input permite…

A

que el usuario ingrese datos desde el teclado durante la ejecución de un programa

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

La función input es

A

built-in

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

La función input devuelve

A

un texto entrado por el usuario en tipo STRING siempre, a menos que haga typecasting

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Type casting

A

Método para convertir variables de cierto tipo de dato a otro tipo de dato.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Para hacer type casting de manera explícita…

A

Se utilizan las funciones int (), float (), y str().

print(int(3.45)) es 3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly