码迷,mamicode.com
首页 >  
搜索关键字:literal    ( 346个结果
Python_报错:SyntaxError: EOL while scanning string literal
Python_报错:SyntaxError: EOL while scanning string literal 原因:python中,目录操作时,字符串的最后一个字符是斜杠,会导致出错,去掉\即可 上代码 解决方法:去掉最后的\即可 ...
分类:编程语言   时间:2019-09-20 22:53:48    阅读次数:131
python try except 出现异常时,except 中如何返回异常的信息字符串
https://docs.python.org/3/tutorial/errors.html#handling-exceptions https://docs.python.org/3/library/exceptions.html#ValueError ("invalid literal for ...
分类:编程语言   时间:2019-08-15 11:11:52    阅读次数:122
Python报错情形及原因
报错情形一:SyntaxError: EOL while scanning string literal原因:这个异常造成的原因是字符串,引号没有成对出现 ...
分类:编程语言   时间:2019-07-14 20:06:18    阅读次数:89
字符串与字符串函数 - 字符串 & 字符串输入
一、表示字符串与字符串I/O 【字符串 - 以空字符(\0)结尾的 char 类型数组】 1、字符串字面量(字符串常量) 用双引号括起来的内容称为字符串常量(string literal),也叫做字符串常量(string constant)。双引号中的字符和编译器自动加入末尾的 \0 字符,都作为字 ...
分类:其他好文   时间:2019-07-07 16:07:21    阅读次数:96
nginx location 配置详解
指令作用 匹配指定的请求uri(请求uri不包含查询字符串,如http://localhost:8080/test?id=10,请求uri是/test) 语法形式 匹配模式及顺序 匹配字符串分为两种:普通字符串(literal string)和正则表达式(regular expression),其中 ...
分类:其他好文   时间:2019-06-30 15:59:36    阅读次数:83
LeetCode-211 Add and Search Word - Data structure design
题目描述 Design a data structure that supports the following two operations: search(word) can search a literal word or a regular expression string contain ...
分类:其他好文   时间:2019-06-19 12:10:44    阅读次数:111
The Function() Constructor
Functions are usually defined using the function keyword, either in the form of a function definition statement or a function literal expression. But ...
分类:其他好文   时间:2019-05-14 19:29:23    阅读次数:159
python基础操作
1。f.string字符串 它的學名叫作 “Literal String Interpolation”。用法如下: 还可以: ...
分类:编程语言   时间:2019-04-23 21:22:23    阅读次数:166
3.JavaScript-语法、关键保留字及变量
语法构成区分大小写标识符注释直接量字面量literal关键字保留字变量语法构成JavaScript 的语言核心 ECMAScript. 区分大小写ECMAScript 中的一切,包括变量、函数名和操作符都是区分大小写的。 例如:artisan和Artisan表示两种不同的变量。 标识符所谓标识符,就 ...
分类:编程语言   时间:2019-03-31 12:20:38    阅读次数:141
Python 编程语言要掌握的技能之一:使用数字与字符串的技巧
最佳实践 1. 少写数字字面量 “数字字面量(integer literal)” 是指那些直接出现在代码里的数字。它们分布在代码里的各个角落,比如代码 del users[0] 里的 0 就是一个数字字面量。它们简单、实用,每个人每天都在写。但是,当你的代码里不断重复出现一些特定字面量时,你的“代码 ...
分类:编程语言   时间:2019-03-16 12:23:57    阅读次数:203
346条   上一页 1 2 3 4 5 6 ... 35 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!