-
Notifications
You must be signed in to change notification settings - Fork 0
/
1_read.py
48 lines (31 loc) · 897 Bytes
/
1_read.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
46
47
48
# Funciones en python
# Output a pantalla
print("Tercer semana de Hacker School")
# Input
name = input("Cual es tu nombre?")
print("Tu nombre es", name)
# Input de números
age = int(input("Cual es tu edad?"))
height_in_meters = float(input("Cual es tu estatura en metros?"))
print("Edad: ", age, " Estatura: ", height_in_meters, "m", sep="")
# Funciones desde una librería
import random
print("El ganador de un descuento en Reservamos es:", random.randint(1, 10))
# Funciones propias
def say_hello():
print("Hola!")
say_hello()
def say_this(this):
print(this)
say_this("Hello!")
# Funciones con valor de retorno
def square_area(side):
return side * side
print(square_area(10))
def rectangle_area(length, height):
return length * height
print(rectangle_area(4,5))
import math
def circle_area(radius):
return math.pi * radius * radius
print(circle_area(4))