ProblemStatement.py

 avatar
unknown
python
9 months ago
105 B
11
Indexable
# Incorrect Solution: 
x = “Hello World!”
print(X) 

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