0
I am a beginner why at front its print ('Hello world!) Then answer is Hello world! But when we do programming we need to add '''
Plz resolve I am new
1 Respuesta
+ 8
Both, are acceptable for strings.
You can replace single quotes with double quotes without issue.
print('Hello world')
#vs
print("Hello world")