True, presentations can be saved as PDF’s it will come out as separate pages though
        
             
        
        
        
Some things to consider when preparing a medical report are:
- Informed consent of the patient
- Physical examinations of the patient
- Background information
- Obtained specimens
- Medical history, etc.
<h3>What is a Medical Report?</h3>
This refers to the very detailed report that contains an account of a person's full clinical history.
Therefore, a sample medical report is given below:
- Name of Hospital: Mellview Hospital
- Address: 27, Hemingway Close, London
- Gender: Male
- Name: Oscar Pedrozo
- HIV test, Malaria test, High Blood Pressure, etc.
Read more about medical reports here:
brainly.com/question/21819443
#SPJ1
 
        
             
        
        
        
nums = []
while True:
    num = float(input("Enter a number: "))
    if num <= 0:
        break
    nums.append(num)
print("The largest number entered was",max(nums))
I wrote my code in python 3.8. I hope this helps.