name = Anna score -> 96 print name print score | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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

22nd Aug 2023, 5:42 PM
ALUMA NNAMDI FORTUNE
ALUMA NNAMDI FORTUNE - avatar
6 Answers
+ 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.
23rd Aug 2023, 11:25 AM
Ausgrindtube
Ausgrindtube - avatar
+ 5
Someone should mention the programming language and explain what it is supposed to do. Someone should not paste code in the title section.
22nd Aug 2023, 6:35 PM
Lisa
Lisa - avatar
22nd Aug 2023, 6:26 PM
Ausgrindtube
Ausgrindtube - avatar
0
Someone should help me out
22nd Aug 2023, 5:43 PM
ALUMA NNAMDI FORTUNE
ALUMA NNAMDI FORTUNE - avatar
0
It is python language
22nd Aug 2023, 6:50 PM
ALUMA NNAMDI FORTUNE
ALUMA NNAMDI FORTUNE - avatar
0
name = 'Anna' score = 96 print (name , score)
24th Aug 2023, 4:10 PM
Gulnoza Pulatova
Gulnoza Pulatova - avatar