ProblemStatement.py

mail@pastecode.io avatar
unknown
python
19 days ago
105 B
7
Indexable
Never
# Incorrect Solution: 
x = “Hello World!”
print(X) 

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