+ 8
Why i cant generate this code please help >>> "Spam" + 'eggs' 'Spameggs'
pythotn console
6 Antworten
+ 15
You need to use print()
+ 10
You are typing into the console.
If you type "Spam" + 'eggs' and hit enter, you will get
'Spameggs'
Don't type >>>. The 3 chevrons are the prompt. They are not part of the code. If you type >>> "Spam" etc., you will get an error because >>> doesn't mean anything.
+ 6
i will check it bro
+ 6
thank u all friends
+ 3
i had generate that result too