- 5
"Stay hungry, stay foolish" by Steve Jobs
Could anyone please help me to write the code exactly in the above format ? I have already tried thousand of times. Here what I have already tried: print("Stay hungry, stay foolish")('by Steve Jobs) print("Stay hungry, stay foolish" 'by Steve Jobs') print("Stay hungry, stay foolish" by Steve Jobs)
14 Answers
+ 10
print("\"Stay hungry, stay foolish\" by Steve Jobs")
You're Welcome :D
+ 1
print('"Stay hungry, stay foolish" by Steve Jobs')
0
Alternatively you can try escape character (backslash)
0
Sanchit Bahl You could still use double quotes:
print("\"Stay hungry...\"")
# Hope this helps
0
thanks
0
This had me screaming wtf. I don't know how to end it.
0
print ("\"Stay hungry, stay foolish\"" + " by Steve Jobs")
0
print("\"Stay hungry, stay foolish\" by Steve Jobs")
There you go!
0
print(""" "Stay hungry, stay foolish" by Steve Jobs""")
0
Which one is correct ans
0
print("\"Stay hungry, stay foolish\" by Steve jobs")
0
print("\"Stay hungry, stay foolish\" by Steve Jobs")
- 3
print("\"Stay hungry, stay foolish\" by Steve Jobs")
You're Welcome :D
- 6
Finally I cracked it!!
print('"Stay hungry, stay foolish" by Steve Jobs')