Respuesta :
Answer:
Incomplete question. However, I infer you need assistance to provide full question.
Explanation:
Here's the full question;
"4.3 code practice adhesive (in python 3) write a program that uses a loop to print the uppercase alphabet with the correct ASCII number next to each letter. (e.g., one line might be A 65)".
Thus, you are expected to use the computer programming language Python to write the program.
The program written in python 3 prints out a certain number of virtual hugs determined by the value of age inputted by the user, the program is as follows :
your_age=int(input('How old are you turning today? : '))
#prompts the user to enter his/her age
for years in range(1, your_age+1):
#loops through the inputted age value
print("**HUG**")
#for each year in the age range, **HUG** is displayed.
The program displays a certain number of virtual hugs which is equal to the age value supplied by the user.
Learn more on python programs: brainly.com/question/18732854
