Python: Difference between revisions

From Halfface
Jump to navigation Jump to search
Line 6: Line 6:
  r =requests.get('https://halfface.se')
  r =requests.get('https://halfface.se')
  print(r.text)
  print(r.text)
=dictionary=
dictionary = {"a": 99, "hello": "world"}
=import=
=import=
Import functions.
Import functions.
  import $module
  import $module

Revision as of 20:20, 26 April 2021

version

Show python version

python -V

make an http request

import requests
r =requests.get('https://halfface.se')
print(r.text)

dictionary

dictionary = {"a": 99, "hello": "world"}

import

Import functions.

import $module