Computer Science, asked by aadarrshofficial, 9 months ago

1.
2.
Create a python script to print hello, world! four times.
3.
Write a program that prints “hello world it is sunny today” three times.

Create a coding in python
Open a new Python interpreter and use it to find the value of 2 + 3.

Answers

Answered by sonalithakur82
1

Answer:

Explanation:

1.  print ("hello world")

print ("hello world")

print ("hello world")

print ("hello world")

2. print ("hello world ,its a sunny day")

print ("hello world ,its a sunny day")

print ("hello world ,its a sunny day")

3. int a=2

b=3

sum = a+b

print("the value of 2+3 is,"; sum")

plz forgive if syntax is not correct

plz mark me brainliest

Answered by soumyakalra7
0

1.  print ("hello world")

print ("hello world")

print ("hello world")

print ("hello world")

2. print ("hello world ,its a sunny day")

print ("hello world ,its a sunny day")

print ("hello world ,its a sunny day")

3. int a=2

b=3

sum = a+b

print("the value of 2+3 is,"; sum")

Similar questions