print(“hello,world”)
pycharm设置
1. 选择python 解析器,目的是确定pycharm 的运行环境。
方法: File-->Settings-->Project:unititled-->Project Interpreter
2、配置PyCharm的背景。
File-->Setting-->Editor-->Colors & Fonts
color Scheme: 配置背景颜色(有白色,黑色等)
code style scheme: 默认为default
Keymap: 快捷键配置,依个人习惯而定
View mode: 视图,依个人习惯而定
look and fell: 风格,有Windows,Darcula, 和IntelliJ,
3,声明变量
File-->Settings-->Edrtor-->file and Code Templates--->Python
#_*_coding:utf-8_*_ #我的代码是由utf-8代码库组成
name = "buildydream" #作者是“build_dream”
4,字体
(1)在PyCharm中可以开启Ctrl+鼠标滚轮的缩放字体功能。具体方法如下:
File --> Setting --> Editor --> General --> 勾选Change font size (zoom) with Ctrl+Mouse Whee
(2)一般选择Darcula类型
方法: File-->Setting-->Editor-->Colors & Fonts-->Font ---->Scheme处选择Darcula类型,
如果想看起来更专业些,可以下载 Dejavu sans momo
下载地址:https://sourceforge.net/projects/dejavu/?source=typ_redirect
5、显示行号
File --> Setting --> Editor --> General -->appearance---->show line numbers
单行注释用#
多行注释用 '''