Python之first script

1  A first script

  1)  script1.py  

1 # A first Python script
2 import sys                  # Load a library module
3 print(sys.platform)
4 print(2 ** 10)             # Raise 2 to a power
5 x = ‘Spam!‘
6 print(x * 8)                # String repetition

  this file:

  - Imports a Python module (libraries of additional tools), to fetch the name of the platform

  - Runs three print function calls, to display the script’s results

  - Uses a variable named x, created when it’s assigned, to hold onto a string object

  - Applies various object operations that we’ll begin studying in the next chapter

  2)  Run file

  Once save this text file, run it by listing its full filename as the first argument to a python command, typed at the system shell prompt:

% python script1.py

  The output result in my computer is

linux2
1024
Spam!Spam!Spam!Spam!Spam!Spam!Spam!Spam!
时间: 2024-10-18 01:34:36

Python之first script的相关文章

python BeautifulSoup4 获取 script 节点问题

在爬取12306站点名时发现,BeautifulSoup检索不到station_version的节点 因为script标签在</html>之外,如果用‘lxml’解析器会忽略这一部分,而使用html5lib则不会. ... 1 <!-- 购物车 --> 2 <div style="display: none;" class="buy-cart"><div class="cart-hd"><sp

Python框架、库以及软件资源汇总

转自:http://developer.51cto.com/art/201507/483510.htm 很多来自世界各地的程序员不求回报的写代码为别人造轮子.贡献代码.开发框架.开放源代码使得分散在世界各地的程序员们都能够贡献他们的代码与创新. Python就是这样一门受到全世界各地开源社区支持的语言.Python可以用来开发各种小工具软件.web应用.科学计算.数据分析等等,Python拥有大量的流行框架,比如Django.使用Python框架时,可以根据自己的需求插入不同的模块,比如可以用S

Machine and Deep Learning with Python

Machine and Deep Learning with Python Education Tutorials and courses Supervised learning superstitions cheat sheet Introduction to Deep Learning with Python How to implement a neural network How to build and run your first deep learning network Neur

测试:python调用cmd命令,让push包自动化

一.python与monkey script脚本相结合,达到修改.script脚本中的内容 1 #coding:utf-8 2 ''' 3 push脚本进室内机,并运行 4 5 ''' 6 import os 7 import re 8 import subprocess 9 10 #执行脚本 11 def run_monkey(path): 12 filelist=os.listdir(path) 13 for filename in filelist: 14 filepath=os.path

pip安装python 包

python3.6 里边没有Pip module 其他方法都比较复杂, 通过下边这种方法比较简单 https://pip.pypa.io/en/stable/installing/ 在这个网站中下载 To install pip, securely download get-pip.py. [2] 然后就可以在 python路径的script路径看到 pip和easy_install 程序了 有了pip程序后,在powershell中打开 ##可以采用pip list --outdate 查看有

在Linux下调试Python代码的各种方法

这是一个我用于调试或分析工具概述,不一定是完整全面,如果你知道更好的工具,请在评论处标记. 日志 是的,的确,不得不强调足够的日志记录对应用程序是多么的重要.您应该记录重要的东西,如果你的记录足够好的话,你可以从日志中找出问题从而节省大量的时间. 如果你曾经用print语句来调试代码现在停下吧,用logging.debug替代,开始可以慢慢来,以后完全禁用它... 追踪有时看到程序如何被执行会很有帮助.你可以使用IDE的调试共轭ngn一步一步的运行程序,但你需要知道你要找的是什么,否则这将会是一

工程脚本插件方案 - c集成Python基础篇(VC++嵌入Python)

序: 为什么要集成脚本,怎么在工程中集成Python脚本. 在做比较大型的工程时,一般都会分核心层和业务层.核心层要求实现高效和稳定的基础功能,并提供调用接口供业务层调用的一种标准的框架划分.在实际中根据需求会拆分的更细.外部的表现形式就是一个核心动态库,带着一堆业务业务动态库.通过一个调度程序把这些链接起来,外加一堆配置文件,就形成一个完成的项目. 这种模式在一个团队开发中,工作职责比较容易划分.制定API接口后,开发工作基本可以并行实现,包括后期的功能测试(白盒.黑盒).不管工程使用什么语言

python基础课程_学习笔记13:标准库:有些收藏夹——sys

标准库:有些收藏夹 sys sys这个模块可以让你访问和python解释器联系紧密的变量和函数. sys模块中一些重要的函数和变量 函数/变量 描写叙述 argv 命令行參数,包含脚本名称 exit([arg]) 退出当前程序,可选參数为给定的返回值或者错误信息 modules 映射模块名字到加载模块的字典 path 查找模块所在文件夹的文件夹名列表 platform 类似sunos5或者win32的平台标识符 stdin 标准输入流--一个类文件对象 stdout 标准输出流--一个类文件对象

让python脚本在linux的后台执行,使其成为守护进程

在里以python脚本为例 #vim /etc/init/open-status.conf 其中open-status.conf中的内容即为我们要编辑的,在后续启动中也会用到(open-status),如start open-status其实就是调用了open-status.conf的配置. 内容如下: description "Listen to the status information of the openvpn and connect to the database to write