Revision history of "Python"

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 16:59, 24 November 2021Admin talk contribsm 31,175 bytes 0 Protected "Python" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) [cascading]
  • curprev 16:32, 24 November 2021Admin talk contribs 31,175 bytes +31,175 Created page with "===Print the text=== <pre class="prettyprint lang-python"> print("text") print("Mark","Brett","Joan","Rick", "Kerri", sep="") print(10,15,20,25,sep="***") print("Journey", "REO Speedwagon" , "Foreigner", sep="\n") </pre> <div class="toccolours mw-collapsible mw-collapsed"> '''result: <div class="mw-collapsible-content"> MarkBrettJoanRickKerri 10***15***20***25 Journey REO Speedwagon Foreigner </div> </div> ===Character Case=== * Camel case <pre class="p..."