Skip to content

Instantly share code, notes, and snippets.

View im-oss's full-sized avatar

Thomas im-oss

View GitHub Profile
.版本 2
.支持库 dp1
.子程序 run_decode, 文本型
.局部变量 a, 文本型
.局部变量 b, 文本型
.局部变量 c, 文本型, , "36"
.局部变量 d, 整数型
.局部变量 e, 整数型
a = “3bed22f7f496e84b035a996522baa7594c27c7e5718a78bfddf9012904b70eb755d67f90c8de149ead7ee674b024f38c216642030c2d54cb1dd657dd66342c99c239f3c31fd399fc052a9b7861f2073d2b9f47811dd77fd544d570c34bf5f349d110389979571714694a5054238465ca38ba26c25fb1a32b4d0a3b93666b09b3”
c = { “a”, “b”, “c”, “d”, “e”, “f”, “g”, “h”, “i”, “g”, “k”, “l”, “m”, “n”, “o”, “p”, “q”, “r”, “s”, “t”, “u”, “v”, “w”, “x”, “y”, “z”, “1”, “2”, “3”, “4”, “5”, “6”, “7”, “8”, “9”, “0” }
@im-oss
im-oss / cheatsheet.py
Created August 26, 2016 16:55 — forked from fuyufjh/cheatsheet.py
My Python Cheatsheet
Python Cheatsheet
=================
################################ Input & Output ###############################
name = input('please enter your name: ')
print('hello,', name)
ageStr = input('please enter your age: ')
age = int(ageStr)