As your first homework, send me a screenshot (a single JPG/PNG file) of your Python environment. It should contain a started interactive session and your favourite editor with a Python script.
Visit the Python Web Site https://www.python.org/.
Find the latest version of Python.
Find Python Enhancement Proposals (PEPs).
Find The Python Standard Library documentation.
Install the latest version of Python and/or run Python in your system. Use Python CLI as a calculator.
Check text editors available in your system.
Create a hello.py module and run the script.
#!/usr/bin/env python3 name = input("Enter your name: ") print ( "Hello {}!".format(name) ) for char in name: print(char, ord(char)) # ASCII code (Py2) or Unicode code point (Py3) input("Press any key ...") # needed on Windows
Visit the GitHub Web Site https://github.com/.
Sign up for GitHub with your UJ email (with uj.edu.pl domain).
Create a repository for your Python scripts.