- 2
\ excercise
print("I'\m learning Python!") print("A number enclosed in double quotes: "42"\") Where is the error ?, still there is a syntax error help!
8 Respuestas
+ 1
Q. You are given a code that should output a string with quotes.
However, it contains errors.
Task
Fix the given code to generate the expected output.
answer.
print('I\'m learning Python. It\'s easy.')
for more doubt contact here on telegram
https://youtu.be/tOWQqOWieE4
+ 1
Q. You are given a code that should output a string with quotes.
However, it contains errors.
Task
Fix the given code to generate the expected output.
answer.
print('I\'m learning Python. It\'s easy.')
for more doubt contact here on telegram
https://youtu.be/tOWQqOWieE4
by janveer singh
0
print("I'm learning Python!")
print("A number enclosed in double quotes: \"42\"")
0
Change this " "
Not this ' '
0
print('I\'m learning Python. It\'s easy.')
0
print('I\'m learning Python. It\'s easy.')
0
Fill in the blank to escape the double quote.? string python please help
- 3
print("I'm learning Python!")
print("A number enclosed in double quotes: \"42\"")