- Home
- Python Examples
- Precedence, Parenthesis And Remainder
Python - Precedence, Parenthesis And Remainder
विवरण :
कोई विवरण नहीं है |
सोर्स कोड :
print (2+3); print ((2+3)*4); print (2+3*4); print (4/2); print (4//2); print (4%2); print (4%3);
आउटपुट :
5 20 14 2.0 2 0 1