Computer Science, asked by ElegantMermaid, 5 hours ago

Write the corresponding Python assignment statement:
a) Assign 10 to variable length and 20 to variable breadth.
b) Assign the average of values of variable length and breadth to a variable sum.
c) Assign a list containing strings 'Paper', 'Gel Pen', and 'Eraser' to a variable stationery.
d) Assign the strings 'Mohandas', 'Karamchand', and 'Gandhi' to variables first, middle and last.
e) Assign the concatenated value of string variables first, middle and last to variable fullname. Make sure to incorporate blank spaces appropriately between differnet parts of names.


Please answer as fast as possible....
DON'T SPAM ❌❌

Answers

Answered by keini5430
1

a) Length=10.

Breadth=20.

b) Sum=(length+breadth)/2

c) Stationary=["Paper", "Gel pen", "Eraser"].

d) First='Mohandas'.

Middle='Karamchand'.

Last='Gandhi'.

e) ???????

I hope it's will help you

please mark me as Brainliest

Similar questions