Answer:
open source software
Explanation:
An open source software is any software that is released under an open source license, meaning that anybody can access its source code, see how it was made, and as the question says, "sutdy, change and improve it".
This is opposite to proprietary or closed source software where you can have a license to use the software but you can't see or change it's "building blocks" (i.e. code)
Answer:
Print([(a,b) for a in range(10) for b in range(10) if (a < b and a%2 == 1 and b%2 == 1)])
Explanation:
Here, we declared a range of value for a and b using a for loop and the range function. The values are the first 10 numeric digits. The we used the if statement to establish our constraints;
In other to ensure that ;
Lower digit is written first ; (a < b) ;
Only odd numbers are considered,
a%2 == 1 ; b%2 == 1 (remainder when a and b are divided by 2 is 1.
Both a and b are declared as a tuple in other to obtain a pair of odd values.
Answer:
It gives credit to the original author and shows that you are not taking credit for someone
else's work