ProblemStatement.py

 avatar
unknown
python
a year ago
105 B
13
Indexable
# Incorrect Solution: 
x = “Hello World!”
print(X) 

# Working Solution:
x = "Hello World!"
print(x)
Editor is loading...
Leave a Comment