1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
rusak2 [61]
3 years ago
9

What did I do wrong? May you please correct it for me...I was also looking on how to delay when it prints. Like when it prints a

sentence I want it to wait about 2 seconds.
Here's the code:

print("\nWelcome to the impossible quiz!\n")

name = input("What's your name before we get started? ")

print("Nice to meet you, "+ name)

print("\nThe rules are very simple, get the answer right and you get 10 points. You only have one chance to get the answer right, get it wrong and you'll lose 3 points! ")

input("\nReady?\n")

user_score = 0

print("First question: Do slugs have four noses?")
if answer = input('Give "F" for False or "T" for True: ')

if answer == "T":
print("Correct, you've gained 10 points!")
user_score += 10

elif answer == "F":
print("Incorrect, you've lost 3 points!")
user_score += -3

Computers and Technology
1 answer:
inessss [21]3 years ago
4 0

Answer:

print("\nWelcome to the impossible quiz!\n")

name = input("What's your name before we get started? ")

print("Nice to meet you, "+ name)

print("\nThe rules are very simple, get the answer right and you get 10 points. You only have one chance to get the answer right, get it wrong and you'll lose 3 points! ")

input("\nReady?\n")

user_score = 0

print("First question: Do slugs have four noses?")

answer = input('Give "F" for False or "T" for True: ')

if answer == "T":

time.sleep(2)

print("Correct, you've gained 10 points!")

user_score += 10

elif answer == "F":

time.sleep(2)

print("Incorrect, you've lost 3 points!")

user_score += -3

Explanation:

Please check the answer. However, if before answer was wrong, and we need to use time.sleep(2) for delaying printing.

You might be interested in
The __________ vulnerability assessment is a process designed to find and document selected vulnerabilities that are likely to b
forsale [732]
The risk vulnerability assessment is the answer
5 0
3 years ago
In cryptography, the term "Secret algorithm" refers to an algorithm designed in a way that prevents the examination of its inner
Solnce55 [7]

Answer:

B. False

Explanation:

A secret algorithm is a key which uses the same key for decryption as well as encryption of data.

5 0
3 years ago
Read 2 more answers
Technology __________ guides how frequently technical systems are updated, and how technical updates are approved and funded.
Nookie1986 [14]

Answer:

governance

Explanation:

5 0
2 years ago
Direct connections provide continuous access to the Internet. Many bandwidth options are associated with direct connections. Whi
Murljashka [212]

Answer:

Option B i.e, T1.

Explanation:

The T1 seems to be the licensed electronic transmission connection efficient for delivering the following bits each sec. T1 lines are required to transmit that server information of such an organization to both the Web or to link to such an ISP.

  • Option A is incorrect because their transmission is different as compared to the T1.
  • Option C is incorrect because consumers are equipped with a high rates broadband link from such a mobile wall socket over an installed telecommunications line.
  • Option D is incorrect because it seems to be a circuit-switched telecommunications line infrastructure that communicates both information as well as voice across a wire cable.
6 0
3 years ago
List two types of energy sources
makvit [3.9K]

Answer:

Types of energy sources include;

  • Geothermal energy
  • Solar energy
  • Wind power
  • Nuclear energy
  • Hydropower
  • Coal burning
  • Natural gas
  • Biomass energy
8 0
2 years ago
Read 2 more answers
Other questions:
  • How does scarcity affect what gets produced
    5·1 answer
  • To reboot a pc, hold down the ____ keys at the same time.
    15·1 answer
  • 8. A pattern of being late for work or for appointments is usually
    12·1 answer
  • What is the acronym that helps you remember the order of math operations?
    9·2 answers
  • What are three ways you cite evedince
    5·2 answers
  • The user can set their own computer hostname and username. Which stage of the hardware lifecycle does this scenario belong to?
    6·1 answer
  • What task does the casting director do, apart from auditioning actors?
    8·1 answer
  • What is data? why is it important to collect data ? explain the points.​
    10·1 answer
  • D State Six Impact of ICT the society​
    7·1 answer
  • Explain the following IT terms Network: Packet: Router: IP address: Server: LAN: WAN: Bus topology: Ring topology: Star topology
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!