and bool python

Solutions on MaxInterview for and bool python by the best coders in the world

showing results for - "and bool python"
Giorgia
20 Mar 2018
1i = 5
2ii = 10
3if i == 5 and ii == 10:
4      print "i is 5 and ii is 10"
5