Difference between revisions of "Testing"


(Sans-Serif)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
__NOTOC__
 +
 
===Serif===
 
===Serif===
  
Line 19: Line 21:
 
   C = range(100)
 
   C = range(100)
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
===HTML Codes===
 +
 +
&#129409;

Latest revision as of 00:53, 24 April 2020


Serif

ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789 ¿ ? ¡ ! & @ ‘ ’ “ ” « » % * ^ # $ £ € ¢ / ( ) [ ] { } . , ® © Ç ç Ğ ğ İ ı Ö ö Ş ş Ü ü

Sans-Serif

ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789 ¿ ? ¡ ! & @ ‘ ’ “ ” « » % * ^ # $ £ € ¢ / ( ) [ ] { } . , ® © Ç ç Ğ ğ İ ı Ö ö Ş ş Ü ü

Code with syntaxhighlight

 1 # code - http://rosettacode.org/wiki/Evolutionary_algorithm
 2 
 3 from string import letters
 4 from random import choice, random
 5  
 6   target  = list("METHINKS IT IS LIKE A WEASEL")
 7   charset = letters + ' '
 8   parent  = [choice(charset) for _ in range(len(target))]
 9   minmutaterate  = .09
10   C = range(100)

HTML Codes

🦁