Saved Bookmarks
| 1. |
Write the output of the following Python code:i=5j=7x=0i=i+(j-i)x=j+iprint x, ":", ij =j**2x=j+ii=i+1print i, ":", j |
|
Answer» The output is: 14: 7 8 : 49 |
|