Computer Science, asked by neelamsingha943, 1 month ago

Write instructions/commands to get following result in python:

Math is Fun so don’t be resistant

Just learn the rules, the rules are consistent

And most important, you must be persistent!

Adding fractions, get common denominators,

Multiply by missing factors to get the denominators,

Add numerators only, Not denominators.​

Answers

Answered by parasking2004
1

Answer:

print("Math is Fun so don't be resistant")

Math is Fun so don't be resistant

>>> print("Just learn the rules, the rules are consistent")

Just learn the rules, the rules are consistent

>>> print("And most important, you must be persistent !")

And most important, you must be persistent !

>>> print("")

>>> print("Adding fractions, get common denominators.")

Adding fractions, get common denominators.

>>> print("Multiply by missing factors to get the denominators.")

Multiply by missing factors to get the denominators.

>>> print("Add numerators only, NOT denominators.")

Add numerators only, NOT denominators.

>>>

Similar questions