Answer:
if(x>12 || x<34)
Explanation:
Mashing the two together using the or '||' operator would allow to run both necessary functions for the next code.
The supernatural condition whereby a human transforms into a wolf is called a werewolf.
The web browser that is automatically installed with windows 7 is Internet Explorer.
Hope this helps.
Answer:
So can u tell me wut is ur question...It is not understandable
Answer:
Explanation:
First take the input of the numbers:
x = int(input("Enter the number of elements to be in the list:"))
b=[ ]
for i in range(0,x):
a=int(input("Element: "))
b.append(a)
c=[ ]
d=[ ]
for i in b:
if(i%2==0):
c.append(i)
else:
d.append(i)
c.sort()
d.sort()
count1=0
count2=0
for k in c:
count1=count1+1
for j in d:
count2=count2+1
print("Largest even number:",c[count1-1])
print("Largest odd number",d[count2-1])