Difference between revisions of "Testing"


 
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
===Futura PT===
+
__NOTOC__
  
Turkish
+
===Serif===
  
<span class="tk-futura-pt">A    B    C    D    E    F    G    H    I    J    K    L    M    N    O    P    R    S    T    U    V    Y    Z    a    b    c    d    e    f    g    h    i    j    k    l    m    n    o    p    r    s    t    u    v    y    z    Ç   ç   Ğ   ğ   İ   ı   Ö   ö   Ş   ş   Ü   ü</span>
+
<span class="il-serif">ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789 ¿ ? ¡ ! & @ ‘ ’ “ ” « » % * ^ # $ £ € ¢ / ( ) [ ] { } . , ® © Ç ç Ğ ğ İ ı Ö ö Ş ş Ü ü</span>
  
English
+
===Sans-Serif===
 +
<span class="il-sans-serif">ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789 ¿ ? ¡ ! & @ ‘ ’ “ ” « » % * ^ # $ £ € ¢ / ( ) [ ] { } . , ® © Ç ç Ğ ğ İ ı Ö ö Ş ş Ü ü</span>
  
<span class="tk-futura-pt">A    B    C    D    E    F    G    H    I    J    K    L    M    N    O    P    Q    R    S    T    U    V    W    X    Y    Z    a    b    c    d    e    f    g    h    i    j    k    l    m    n    o    p    q    r    s    t    u    v    w    x    y    z​​​​</span>
+
===Code with syntaxhighlight===
 
+
<syntaxhighlight lang="Python" line='line'>
 
 
===Mono===
 
 
 
SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace
 
 
 
<pre>
 
 
# code - http://rosettacode.org/wiki/Evolutionary_algorithm
 
# code - http://rosettacode.org/wiki/Evolutionary_algorithm
  
Line 20: Line 15:
 
from random import choice, random
 
from random import choice, random
 
   
 
   
target  = list("METHINKS IT IS LIKE A WEASEL")
+
  target  = list("METHINKS IT IS LIKE A WEASEL")
charset = letters + ' '
+
  charset = letters + ' '
parent  = [choice(charset) for _ in range(len(target))]
+
  parent  = [choice(charset) for _ in range(len(target))]
minmutaterate  = .09
+
  minmutaterate  = .09
C = range(100)
+
  C = range(100)
</pre>
+
</syntaxhighlight>
  
<html><code>
+
===HTML Codes===
# code - http://rosettacode.org/wiki/Evolutionary_algorithm
 
  
from string import letters
+
&#129409;
from random import choice, random
 
 
target  = list("METHINKS IT IS LIKE A WEASEL")
 
charset = letters + ' '
 
parent  = [choice(charset) for _ in range(len(target))]
 
minmutaterate  = .09
 
C = range(100)
 
</code></html>
 

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

🦁