"Stay hungry, stay foolish" by Steve Jobs | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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)

6th Jun 2021, 10:30 PM
Sanchit Bahl
Sanchit Bahl - avatar
14 Answers
+ 10
print("\"Stay hungry, stay foolish\" by Steve Jobs") You're Welcome :D
20th Sep 2021, 8:25 AM
Umair
Umair - avatar
+ 1
print('"Stay hungry, stay foolish" by Steve Jobs')
16th Mar 2023, 3:57 PM
Aarti Arjun kamble
Aarti Arjun kamble - avatar
0
Alternatively you can try escape character (backslash)
6th Jun 2021, 11:18 PM
Gordon
Gordon - avatar
0
Sanchit Bahl You could still use double quotes: print("\"Stay hungry...\"") # Hope this helps
7th Jun 2021, 7:36 AM
Calvin Thomas
Calvin Thomas - avatar
0
thanks
2nd Sep 2021, 11:43 AM
aston
0
This had me screaming wtf. I don't know how to end it.
14th Sep 2021, 9:24 AM
Gabriel Zurek
0
print ("\"Stay hungry, stay foolish\"" + " by Steve Jobs")
1st Oct 2021, 10:33 AM
Mugi Maina
0
print("\"Stay hungry, stay foolish\" by Steve Jobs") There you go!
4th Oct 2021, 7:30 AM
KEMISAAC
0
print(""" "Stay hungry, stay foolish" by Steve Jobs""")
22nd Nov 2021, 4:52 AM
Srikar
0
Which one is correct ans
19th Dec 2021, 2:01 AM
Vasanth B25
0
print("\"Stay hungry, stay foolish\" by Steve jobs")
26th Dec 2022, 7:11 PM
Win Ko Aung
0
print("\"Stay hungry, stay foolish\" by Steve Jobs")
26th Dec 2022, 7:13 PM
Win Ko Aung
- 3
print("\"Stay hungry, stay foolish\" by Steve Jobs") You're Welcome :D
20th Sep 2021, 8:16 AM
Umair
Umair - avatar
- 6
Finally I cracked it!! print('"Stay hungry, stay foolish" by Steve Jobs')
6th Jun 2021, 10:36 PM
Sanchit Bahl
Sanchit Bahl - avatar