+ 2
name = Anna score -> 96 print name print score
Please how can solve this bug. I have trying to solve it in other to show 96 as an output
6 odpowiedzi
+ 4
In python you assign your values similar to the line Anna, e.g.
name = "Anna"
score = 96
To print you just need to put the thing you want to print in parentheses, e.g. print(name + score)
Please review the python course, this is an important aspect to learn or you will have a lot of problems later.
+ 5
Someone should mention the programming language and explain what it is supposed to do. Someone should not paste code in the title section.
+ 4
What's the language?
https://code.sololearn.com/W3uiji9X28C1/?ref=app
0
Someone should help me out
0
It is python language
0
name = 'Anna'
score = 96
print (name , score)