Answer:
Energy that can be used over again
Explanation:
Examples include biofuel,hydroelectric power,and wind.
import random
computer_choice = random.choice(['rock', 'paper', 'scissors'])
player_choice = input('Choose rock, paper, or scissors: ')
if player_choice == computer_choice:
print('Tie. Both players chose '+player_choice)
elif (player_choice == 'rock' and computer_choice == 'scissors') or (player_choice == 'paper' and computer_choice == 'rock') or (player_choice == 'scissors' and computer_choice == 'paper'):
print('You won! '+player_choice +' beats '+computer_choice)
else:
print('You lost! '+computer_choice+' beats '+player_choice)
I wrote my code in python 3.8. I hope this helps. Note the elif statement is actually one line of code but it looks like it takes up more than one line.
When you cite your sources and give credit to the authors, you are: (select all that apply) is option A: practicing ethical behavior.
<h3>Why is ethical behavior important?</h3>
In order to tell the truth, maintain our word, or assist a stranger in need, we must follow ethical principles. Everyday decisions we make are guided by an ethical framework that helps us avoid unjust results and helps us make decisions that have good effects on the world.
Therefore, Honesty, fairness, and equity in interpersonal, professional, and academic relationships as well as in research and scholarly pursuits are characteristics of ethical behavior. The rights, diversity, and dignity of both individuals and groups of people are respected in ethical behavior.
Learn more about ethical behavior from
brainly.com/question/27962109
#SPJ1
<span>If all of the logical conditions are true, the and function returns the logical value true</span>