Archive for March 10th, 2017

Python Basics

The absolute basics: Strings print(“Goodbye, World!”) x = “string value” print (x) Integers myint = 7 print(myint) Floats myfloat = 7.0 print(myfloat) myfloat = float(7) print(myfloat)

Powered by WordPress and ThemeMag