Computer Science, asked by harek0841, 3 months ago

Find out errors and write correct code and underline the corrections made:


a)

Name = “Anusha “

Print “ Blessings “

Print “ Hello”, Name

b)

weather = “sunny”

If weather = ”rainy”

Print( weather, “ weather today “)

Else:

Print (“ Unpredictable weather”)​

Answers

Answered by ssandhu1
0

Answer:

Name = Anusha

print(" Blessing")

print("hello" , Name)

Explanation:

Name is the variable where its value i.e. Anusha will be store.

and the value that you want to print as it is, always comes under bracket and double quotes.

here firstly we print blessing.

then we print hello name, name is the variable so it is replaced with anusha...

Answered by mohammedAlim
0

please send full questions

Similar questions