Rejestr wszystkich publicznych operacji

Wspólny rejestr wszystkich typów operacji dla Wikibooks. Możesz zawęzić liczbę wyników poprzez wybranie typu rejestru, nazwy użytkownika lub tytułu strony.

Rejestr operacji
  • 00:17, 9 maj 2023 2a02:a311:233d:9d80:b21d:7ca9:4636:53b9 dyskusja utworzył(a) stronę Koncepcje programowania/Ściąga (Utworzono nową stronę "==Python== <syntaxhighlight lang=Python> # Comments start with a hash symbol # VARIABLES x = 5 # Integer y = 3.14 # Floating-point number z = "Hello, world!" # String is_true = True # Boolean # PRINTING print("Hello, world!") # Print a string print(x) # Print a variable print(f"The value of x is {x}") # Print a formatted string # INPUT name = input("What is your name? ") # Get input from the user # CONDITIONALS if x > y: print("x is greater than y")…")