心灵美毛巾

文章
5
资源
0
加入时间
2年10月17天

(笔记)Android studio——相对布局(RelativeLayout)

一、(相对父类)    alignParent(Top/Bottom)相对于父类的布局位置(上下)    alignParent(Right/Left)相对于父类的布局位置(左右)    centerInParent相对于父类的布局位置(中心布局)二、(相对控件)——配合使用    layout_(above/below)="@id/bt2(即控件id)"相对于控件bt2位置的上下位置    la...

python 随机种子 时间_基于python的随机时间

随机的概念也就是任意,有时候我们需要随机数,对于时间可能也有时候需要任意时间,我们都知道python中对于随机数,大概就是用到random!!!同样的,对于获取随机事件,我们也同样可以使用random,不过稍微需要变化一下。一、随机数--random我们先来看下randomimport random# 浮点的任意数a = random.random()print(a)# 整形的任意数b = ran...