Answer:
AIDS can be caused by having sexual intercourse with an AIDS-infected partner. It can only be spread through the contact of infected blood or fluid from a mother to child during childbirth.
There are many symptoms of AIDS. However, these are the most common symptoms of AIDS:
- Swollen lymph glands
- Most of the white blood cells are produced there.
2. Weight loss
3. Diarrhea
There are many measures that can be put in placed to prevent AIDS.
- To use a condom during sexual intercourse.
- Making sure that needles are not shared with others (e.g. when piercing your ear). The needles may be contaminated by an AIDS-infected user. Use a clean needle.
The answer is checking the URL.
Looking at the URL or the web address of the website will help you determine whether the site contains reliable and credible information or not. Domain names like .edu and .gov are usually trusted sites. What you are looking for are sites with trusted institutions that have a proven record of integrity and reliability. Domain type should always match the content. For example, .edu should have educational material. By checking the URL, You’ll also be able to establish the person’s name or the agency that published the article.
import random
rock,paper,scissors = 1,2,3
choice = int(input("Please choose 1 2 or 3: "))
computer = random.randint(1,3)
player_won = False
draw = False
if choice == computer:
draw = True
elif choice == 1 and computer == 3:
player_won = True
elif choice == 2 and computer == 1:
player_won = True
elif choice == 3 and computer == 2:
player_won = True
if player_won:
print("You won!")
elif not player_won and not draw:
print("The computer won!")
else:
print("It's a draw!")
First, I recommend importing at the beginning of your program. Also, you can combine all your same datatype variables in one line. You also need to cast your user choice to an integer so you can compare it with the computer's choice. I wrote the if, elif, and else statements using a boolean variable. I simply wrote all the possibilities that would result in the player winning and this would result in the player_won variable being true. If this is the case, we print to the console, "You won!"
Answer:
Offer as much extraneous information as possible. The viewer will decide what is important.