ilsamoano

Results 28 comments of ilsamoano

1) play rugby 2) play soccer common features: - score - bring the ball over a certain limit (border) - avoid enemies from taking the ball - stay within certain...

What is the boolean value of ​"spam" not in "spa span sparql" and not ("egg" > "span")​? "spam" not in "spa span sparql" and not (False) ​ >> "egg" should...

Regular grammar possible generic sentence: `` ::= "terminal" `` ::= "terminal" `` i.e. `` ::= "I" `` ::= "you" `` ::= "write" `` ::= "read" possible example sentences I write...

``` #Consider to have a queue obtained by processing, one by one, #the elements included in the list of the first exercise, # i.e. my_queue = deque(["Draco", "Harry", "Hermione", "Ron",...

``` # Write a sequence of instructions in Python # so as to create a list with the following elements ordered alphabetically: #​"​Harry"​​, ​"​Draco"​​, ​"​Hermione"​​, ​​"​Ron"​​, "​Severus"​​. Grinwald = list...

``` #Consider to have a stack obtained by processing, one by one, the elements included in the list of the first exercise, # i.e. ​my_stack = deque(["Draco", "Harry", "Hermione", "Ron",...

What is the boolean value of not (not True or False and True) or False? not (not True or False and True) or False not (False or False) or False...

``` #Following the template in ​Listing 11,​ write in Python the algorithm proposed originally ​in #Figure 4 of the lecture notes entitled "Algorithms" as a flowchart, and accompany such code...