jython学习笔记2
1.%是求余,//是整除的商,**是乘方
| abs(var) | Absolute value |
| pow(x, y) | Can be used in place of ** operator |
| pow(x,y,modulo) | Ternary power-modulo (x **y) % modulo |
| round(var[, n]) | Returns a value rounded to the nearest 10-n or (10**-n), where n defaults to 0) |
| divmod(x, y) | Returns a tuple of the quotient and the remainder of division |
| Operator Precedence from Highest to Lowest | Name |
| +var, -var, ~var | Unary Operations |
| ** | Power Operations |
| *, /, //, % | Multiplication, Division, Floor Division, Modulo |
| +, - | Addition, Subtraction |
| <<, >> | Left and Right Shift |
| & | Bitwise And |
| ^ | Bitwise Exclusive Or |
| || | Bitwise Or |
| <, >, <=. >= , <> | Comparison Operators |
| ==, != , is, is not, in, not in | Equality and Membership |
| and, or, not | Boolean Conditionals |
| Function | Description | |
| chr(value) | Converts integer to a character | |
| complex(real [,imag]) | Produces a complex number | |
| dict(sequence) | Produces a dictionary from a given sequence of (key, value) tuples | |
| eval(string) | Evaluates a string to return an object…useful for mathematical computations. Note: This function should be used with extreme caution as it can pose a security hazard if not used properly. | |
| float(value) | Converts number to float | |
| frozenset(set) |Converts a set into a frozen set | ||
| hex(value) | Converts an integer into a string representing that number in hex | |
| int(value [, base]) | Converts to an integer using a base if a string is given | |
| list(sequence) | Converts a given sequence into a list | |
| long(value [, base]) | Converts to a long using a base if a string is given | |
| oct(value) | Converts an integer to a string representing that number as an octal | |
| ord(value) | Converts a character into its integer value | |
| repr(value) | Converts object into an expression string. Same as enclosing expression in reverse quotes ( x + y). Returns a string containing a printable and evaluable representation of the object | |
| set(sequence) | Converts a sequence into a set | |
| str(value) | Converts an object into a string Returns a string containing a printable representation of the value, but not an evaluable string | |
| tuple(sequence) | Converts a given sequence to a tuple | |
| unichr(value) | Converts integer to a Unicode character | |
2. 对于可以修改的变量的缺省值,例如List, 在初始化的时候是不确定的,你希望它能够初始化成一个空的列表,但其实不是这样的。这点要注意
3.后进先出的栈。任何的Python方法都有返回值。
4.不知道如何在控制台接收键盘输入
jython学习笔记2的更多相关文章
- jython学习笔记3
1.os.environ["HOME"] 为什么这句话在我的STS中打印不出东西,还报错 Method Description close() Close file fileno( ...
- Python学习笔记—Python基础1 介绍、发展史、安装、基本语法
第一周学习笔记: 一.Python介绍 1.Python的创始人为吉多·范罗苏姆.1989年的圣诞节期间,吉多·范罗苏姆为了在阿姆斯特丹打发时间,决心开发一个新的脚本解释程序,作为ABC语言 ...
- Python学习笔记(一)基础
学习资料 跟着廖雪峰的Python教程学习Python,大家可以去官方网站查看学习教程.使用的Python版本为3.0.x,解释器为CPython.本系列博客为学习笔记,记录跟随廖老师所学知识,同时会 ...
- 【Java】「深入理解Java虚拟机」学习笔记(1) - Java语言发展趋势
0.前言 从这篇随笔开始记录Java虚拟机的内容,以前只是对Java的应用,聚焦的是业务,了解的只是语言层面,现在想深入学习一下. 对JVM的学习肯定不是看一遍书就能掌握的,在今后的学习和实践中如果有 ...
- js学习笔记:webpack基础入门(一)
之前听说过webpack,今天想正式的接触一下,先跟着webpack的官方用户指南走: 在这里有: 如何安装webpack 如何使用webpack 如何使用loader 如何使用webpack的开发者 ...
- PHP-自定义模板-学习笔记
1. 开始 这几天,看了李炎恢老师的<PHP第二季度视频>中的“章节7:创建TPL自定义模板”,做一个学习笔记,通过绘制架构图.UML类图和思维导图,来对加深理解. 2. 整体架构图 ...
- PHP-会员登录与注册例子解析-学习笔记
1.开始 最近开始学习李炎恢老师的<PHP第二季度视频>中的“章节5:使用OOP注册会员”,做一个学习笔记,通过绘制基本页面流程和UML类图,来对加深理解. 2.基本页面流程 3.通过UM ...
- 2014年暑假c#学习笔记目录
2014年暑假c#学习笔记 一.C#编程基础 1. c#编程基础之枚举 2. c#编程基础之函数可变参数 3. c#编程基础之字符串基础 4. c#编程基础之字符串函数 5.c#编程基础之ref.ou ...
- JAVA GUI编程学习笔记目录
2014年暑假JAVA GUI编程学习笔记目录 1.JAVA之GUI编程概述 2.JAVA之GUI编程布局 3.JAVA之GUI编程Frame窗口 4.JAVA之GUI编程事件监听机制 5.JAVA之 ...
随机推荐
- jboss漏洞导致服务器中毒
中毒现象 1. 网络出现拥塞,访问延迟增加. 2. 系统定时任务表中出现异常的定时任务. 3. 出现异常进程. 4. $JBOSS_HOME/bin或/root目录下出现大量的异常文件. 现象 ...
- 分布式消息系统Kafka初步
终于可以写kafka的文章了,Mina的相关文章我已经做了索引,在我的博客中置顶了,大家可以方便的找到.从这一篇开始分布式消息系统的入门. 在我们大量使用分布式数据库.分布式计算集群的时候,是否会遇到 ...
- MVC项目实践,在三层架构下实现SportsStore-04,实现分页
SportsStore是<精通ASP.NET MVC3框架(第三版)>中演示的MVC项目,在该项目中涵盖了MVC的众多方面,包括:使用DI容器.URL优化.导航.分页.购物车.订单.产品管 ...
- activity传值到fragment
1,初始化fragment时候: @Override public void onAttach(Activity activity) { /** 注册广播 */ initBroadcast(); s ...
- 学习"大众点评网的架构设计与实践"
今天看了一篇"程序员"上的文章:"大众点评网的架构与实践",因为里面谈的架构演变之路中所经历的痛点对我的工作经验来说感同身受,所以觉得文章里的一些解决方案对我还 ...
- linux:lnmp环境搭建
一.准备工作(把安装环境需要使用到的包都下载好) mysql(官网):http://dev.mysql.com/downloads/ php(官网):http://php.net/downloads. ...
- UEditor和CKEditor配置上传图片,视频,附件
UEditor: http://blog.sina.com.cn/s/blog_8bb128230102v12x.html CKEditor:http://blog.sina.com.cn/s/blo ...
- hduoj 4706 Children's Day 2013 ACM/ICPC Asia Regional Online —— Warmup
http://acm.hdu.edu.cn/showproblem.php?pid=4706 Children's Day Time Limit: 2000/1000 MS (Java/Others) ...
- 使用sql对数据库进行简单的增删改查
1.创建表 create table 表名( 列名 列的类型, 列名 列的类型, 列名 列的类型 (注意自后一列不能加‘ ,’) ); 2.修改表 修改表名--> rename 旧表名 t ...
- apache高负载性能调优
先阅读apache配置优化建议如下,再对相关参数进行调整,观察服务器状况.Apache配置优化建议:进入/usr/local/apache2/conf/extra 目录下Apache优化,经过上述操作 ...