Skip to content

Instantly share code, notes, and snippets.

@BurhanH
Created February 22, 2019 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BurhanH/63dba817e447ee10bbac67a3566ebe58 to your computer and use it in GitHub Desktop.
Save BurhanH/63dba817e447ee10bbac67a3566ebe58 to your computer and use it in GitHub Desktop.
Unicode variable names in Python 3
# -*- coding: utf-8 -*-
import math
π = math.pi
print(π)
# 3.141592653589793
τ = math.tau
print(τ)
# 6.283185307179586
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment