Afișați versiunea Python: Revision history

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.

28 December 2022

  • curprev 07:1007:10, 28 December 2022Cosmin.SABO talk contribs 412 bytes +412 Pagină nouă: == Cerinţa == Să se afișeze versiunea de Python utilizată. == Date de ieşire == Se va afișa pe ecran versiunea curentă de Python. == Exemplu == ; Ieșire : Versiune: 3.10.8 == Rezolvare == === Rezolvare ver. 1 === <syntaxhighlight lang="python" line> import sys def get_version(): return sys.version.split()[0] if __name__ == "__main__": print(f"Versiune: {get_version()}") </syntaxhighlight>