Computer Science, asked by deepika261, 6 months ago

in this picture there are few errors can anyone solve it it is from Phyton​

Attachments:

Answers

Answered by Pablu
0

Answer:

Explanation:

1. print("Hello World")

2. num = int(input(" Enter any number : " ))

print(num)

3. sting = str(input(" Enter any string : " ))

print(sting)

4. num = 13

print(num)

5. list = ["apple", "mango", "orange"]

del list[ 3 ]

6. list = ["apple", 22, "orange"]

list.append(43)

7. list = ["apple", 22, "orange"]

list.insert(1, "apples")

8. num = 4

print("I am " + num + " years old")

9. Last one is correct

MARK ME THE BRAINLIEST ...

Similar questions