25.0k views
2 votes
Edhesive 4.3 code practice question 1

2 Answers

2 votes

Answer:

age = int(input("Enter your age: "))

c = age

o = 0

while (o < age):

print("**HUG**")

o = o + 1

print("**virtual hug**")

Step-by-step explanation:

User Nachito
by
4.7k points
1 vote

Answer:

hugs = int(input("How old are you?: "))

hug = 0

while(hug < hugs):

print("**HUG**")

hug = hug + 1

Explanation: Enjoy

User Matt Turner
by
4.2k points