Posts by Engcompaulo • 29 points
2 posts
-
0
votes4
answers771
viewsA: Align button to the right side of select
Try this way here: <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> * { box-sizing: border-box; } /* Create two equal columns that…
bootstrap-3answered Engcompaulo 29 -
2
votes2
answers3255
viewsA: Using Append - Python
It is recommended to use the append when you use a loop to write this data in a list, example: In this example I want only the even numbers from 0 to 20 lista_par = [] for i in range(20): if i%2 ==…