La programmation

1873
Comment imprimer sans nouvelle ligne ni espace?

J'aimerais le faire en python. Ce que je voudrais faire dans cet exemple dansc: En C: #include <stdio.h> int main() { int i; for (i=0; i<10; i++) printf("."); return 0; } Production: .......... En Python: >>> for i in range(10): print('.') . . . . . . . . . . >>>...

1847
Comment fonctionnent les triangles CSS?

На этот вопрос есть ответы на Stack Overflow dans : Как создать треугольники CSS? Il existe de nombreuses formes CSS différentes sur CSS Tricks - Shapes of CSS et je suis particulièrement perplexe avec un triangle: #triangle-up { width: 0; height: 0; border-left: 50px solid transparent;...