学习python第一天 pycharm设置
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
单行注释用#
多行注释用 '''