0% found this document useful (0 votes)
5 views1 page

Online Python Compiler (Interpreter) - Programiz 13

The document contains a Python code snippet that initializes three variables a, b, and c with values 777, 888, and 999 respectively. It performs basic arithmetic operations on these variables and prints the results. The output also includes a humorous message 'Respect the goat'.

Uploaded by

kornsmoking
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

Online Python Compiler (Interpreter) - Programiz 13

The document contains a Python code snippet that initializes three variables a, b, and c with values 777, 888, and 999 respectively. It performs basic arithmetic operations on these variables and prints the results. The output also includes a humorous message 'Respect the goat'.

Uploaded by

kornsmoking
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Programiz

Python Online PRO ›


Compiler

[Link] Run Output Clear

1 a,b,c = 777,888,999 a= 777 b= 888 c= 999


2 print("a=",a,"b=",b,"c=",c)
3 print("\na+b = ",a+b,"\nb-c = ",b-c,"\na x c = ",a*c a+b = 1665
,"\nc/b = ",c/b) b-c = -111
4 a x c = 776223
5 print(" \n\nRespect the goat") c/b = 1.125

Respect the gaot

You might also like