JavaScript 就像 Python
欢迎各位小伙伴来到golang学习网,相聚于此都是缘哈哈哈!今天我给大家带来《JavaScript 就像 Python》,这篇文章主要讲到等等知识,如果你对文章相关的知识非常感兴趣或者正在自学,都可以关注我,我会持续更新相关文章!当然,有什么建议也欢迎在评论留言提出!一起学习!

本文对 javascript 和 python 的语法和基本编程结构进行了比较。它旨在强调这两种流行的编程语言在实现基本编程概念方面的相似之处。
虽然两种语言有许多共同点,使开发人员更容易在它们之间切换或理解对方的代码,但也应该注意明显的语法和操作差异。
重要的是要以轻松的角度进行这种比较,而不是过分强调 javascript 和 python 之间的相似或差异。目的不是要声明一种语言优于另一种语言,而是提供一种资源,可以帮助熟悉 python 的程序员更轻松地理解并过渡到 javascript。
你好世界
javascript
// in codeguppy.com environment
println('hello, world');
// outside codeguppy.com
console.log('hello, world');
python
print('hello, world')
变量和常量
javascript
let myvariable = 100; const myconstant = 3.14159;
python
myvariable = 100 myconstant = 3.14159
字符串插值
javascript
let a = 100;
let b = 200;
println(`sum of ${a} and ${b} is ${a + b}`);
python
a = 100
b = 200
print(f'sum of {a} and {b} is {a + b}')
if 表达式/语句
javascript
let age = 18;
if (age < 13)
{
println("child");
}
else if (age < 20)
{
println("teenager");
}
else
{
println("adult");
}
python
age = 18
if age < 13:
print("child")
elif age < 20:
print("teenager")
else:
print("adult")
条件句
javascript
let age = 20; let message = age >= 18 ? "can vote" : "cannot vote"; println(message); // output: can vote
python
age = 20 message = "can vote" if age >= 18 else "cannot vote" print(message) # output: can vote
数组
javascript
// creating an array let myarray = [1, 2, 3, 4, 5]; // accessing elements println(myarray[0]); // access the first element: 1 println(myarray[3]); // access the fourth element: 4 // modifying an element myarray[2] = 30; // change the third element from 3 to 30 // adding a new element myarray.push(6); // add a new element to the end
python
# creating a list to represent an array my_array = [1, 2, 3, 4, 5] # accessing elements print(my_array[0]) # access the first element: 1 print(my_array[3]) # access the fourth element: 4 # modifying an element my_array[2] = 30 # change the third element from 3 to 30 # adding a new element my_array.append(6) # add a new element to the end
对于每个
javascript
let fruits = ["apple", "banana", "cherry", "date"];
for(let fruit of fruits)
println(fruit);
python
fruits = ["apple", "banana", "cherry", "date"]
for fruit in fruits:
print(fruit)
词典
javascript
// creating a dictionary
fruit_prices = {
apple: 0.65,
banana: 0.35,
cherry: 0.85
};
// accessing a value by key
println(fruit_prices["apple"]); // output: 0.65
python
# creating a dictionary
fruit_prices = {
"apple": 0.65,
"banana": 0.35,
"cherry": 0.85
}
# accessing a value by key
print(fruit_prices["apple"]) # output: 0.65
功能
javascript
function addnumbers(a, b)
{
return a + b;
}
let result = addnumbers(100, 200);
println("the sum is: ", result);
python
def add_numbers(a, b):
return a + b
result = add_numbers(100, 200)
print("the sum is: ", result)
元组返回
javascript
function getcircleproperties(radius)
{
const area = math.pi * radius ** 2;
const circumference = 2 * math.pi * radius;
return [area, circumference]; // return as an array
}
// using the function
const [area, circumference] = getcircleproperties(5);
println(`the area of the circle is: ${area}`);
println(`the circumference of the circle is: ${circumference}`);
python
import math
def getcircleproperties(radius):
"""calculate and return the area and circumference of a circle."""
area = math.pi * radius**2
circumference = 2 * math.pi * radius
return (area, circumference)
# using the function
radius = 5
area, circumference = getcircleproperties(radius)
print(f"the area of the circle is: {area}")
print(f"the circumference of the circle is: {circumference}")
可变数量的参数
javascript
function sumnumbers(...args)
{
let sum = 0;
for(let i of args)
sum += i;
return sum;
}
println(sumnumbers(1, 2, 3));
println(sumnumbers(100, 200));
python
def sum_numbers(*args):
sum = 0
for i in args:
sum += i
return sum
print(sum_numbers(1, 2, 3))
print(sum_numbers(100, 200))
拉姆达斯
javascript
const numbers = [1, 2, 3, 4, 5]; // use map to apply a function to all elements of the array const squarednumbers = numbers.map(x => x ** 2); println(squarednumbers); // output: [1, 4, 9, 16, 25]
python
numbers = [1, 2, 3, 4, 5] # use map to apply a function to all elements of the list squared_numbers = map(lambda x: x**2, numbers) # convert map object to a list to print the results squared_numbers_list = list(squared_numbers) print(squared_numbers_list) # output: [1, 4, 9, 16, 25]
课程
javascript
class book
{
constructor(title, author, pages)
{
this.title = title;
this.author = author;
this.pages = pages;
}
describebook()
{
println(`book title: ${this.title}`);
println(`author: ${this.author}`);
println(`number of pages: ${this.pages}`);
}
}
python
class book:
def __init__(self, title, author, pages):
self.title = title
self.author = author
self.pages = pages
def describe_book(self):
print(f"book title: {self.title}")
print(f"author: {self.author}")
print(f"number of pages: {self.pages}")
类的使用
javascript
// creating an instance of the book class
// this is actually a real book (see curriculum section for more info)
const mybook = new book("illustrated javascript", "adrian", 684);
mybook.describebook();
python
# Creating an instance of the Book class
# This is actually a real book (see Curriculum section for more info)
my_book = Book("Illustrated JavaScript", "Adrian", 684)
my_book.describe_book()
结论
我们鼓励您参与完善此比较。您的贡献,无论是更正、增强还是新增内容,都受到高度重视。通过合作,我们可以创建更准确、更全面的指南,让所有有兴趣学习 javascript 和 python 的开发人员受益。
制作人员
本文转载自免费编码平台https://codeguppy.com平台的博客。
本文受到其他编程语言之间类似比较的影响:
- kotlin 就像 c# https://ttu.github.io/kotlin-is-like-csharp/
- kotlin 就像 typescript https://gi-no.github.io/kotlin-is-like-typescript/
- swift 就像 kotlin https://nilhcem.com/swift-is-like-kotlin/
- swift 就像 go http://repo.tiye.me/jiyinyiyong/swift-is-like-go/
- swift 就像 scala https://leverich.github.io/swiftislikescala/
理论要掌握,实操不能落!以上关于《JavaScript 就像 Python》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!
畅玩神武手游电脑版的最佳指南
- 上一篇
- 畅玩神武手游电脑版的最佳指南
- 下一篇
- Win10右下角日历打不开怎么办 Win10任务栏日历打不开的处理方法怎么办
-
- 文章 · python教程 | 27分钟前 |
- Python多线程GIL详解与影响分析
- 322浏览 收藏
-
- 文章 · python教程 | 55分钟前 | 游戏开发 Pygame 碰撞检测 Python飞机大战 精灵组
- Python飞机大战小游戏开发教程
- 147浏览 收藏
-
- 文章 · python教程 | 1小时前 |
- Python画皮卡丘教程及代码分享
- 397浏览 收藏
-
- 文章 · python教程 | 1小时前 |
- Python3数组旋转算法详解
- 173浏览 收藏
-
- 文章 · python教程 | 1小时前 |
- PythonSeries方法详解与实战技巧
- 113浏览 收藏
-
- 文章 · python教程 | 1小时前 |
- Pydantic字段不可变性实现方法
- 485浏览 收藏
-
- 文章 · python教程 | 2小时前 |
- Python字符串替换实用技巧分享
- 326浏览 收藏
-
- 文章 · python教程 | 2小时前 |
- Python日期格式解析与验证技巧
- 220浏览 收藏
-
- 文章 · python教程 | 3小时前 |
- PythonOpenCV像素操作教程
- 362浏览 收藏
-
- 文章 · python教程 | 3小时前 |
- Python条件优化:告别嵌套if-else陷阱
- 147浏览 收藏
-
- 文章 · python教程 | 3小时前 |
- Pandas与NumPyNaN查找区别详解
- 278浏览 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 543次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 516次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 500次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 485次学习
-
- ChatExcel酷表
- ChatExcel酷表是由北京大学团队打造的Excel聊天机器人,用自然语言操控表格,简化数据处理,告别繁琐操作,提升工作效率!适用于学生、上班族及政府人员。
- 3172次使用
-
- Any绘本
- 探索Any绘本(anypicturebook.com/zh),一款开源免费的AI绘本创作工具,基于Google Gemini与Flux AI模型,让您轻松创作个性化绘本。适用于家庭、教育、创作等多种场景,零门槛,高自由度,技术透明,本地可控。
- 3383次使用
-
- 可赞AI
- 可赞AI,AI驱动的办公可视化智能工具,助您轻松实现文本与可视化元素高效转化。无论是智能文档生成、多格式文本解析,还是一键生成专业图表、脑图、知识卡片,可赞AI都能让信息处理更清晰高效。覆盖数据汇报、会议纪要、内容营销等全场景,大幅提升办公效率,降低专业门槛,是您提升工作效率的得力助手。
- 3412次使用
-
- 星月写作
- 星月写作是国内首款聚焦中文网络小说创作的AI辅助工具,解决网文作者从构思到变现的全流程痛点。AI扫榜、专属模板、全链路适配,助力新人快速上手,资深作者效率倍增。
- 4517次使用
-
- MagicLight
- MagicLight.ai是全球首款叙事驱动型AI动画视频创作平台,专注于解决从故事想法到完整动画的全流程痛点。它通过自研AI模型,保障角色、风格、场景高度一致性,让零动画经验者也能高效产出专业级叙事内容。广泛适用于独立创作者、动画工作室、教育机构及企业营销,助您轻松实现创意落地与商业化。
- 3792次使用
-
- Flask框架安装技巧:让你的开发更高效
- 2024-01-03 501浏览
-
- Django框架中的并发处理技巧
- 2024-01-22 501浏览
-
- 提升Python包下载速度的方法——正确配置pip的国内源
- 2024-01-17 501浏览
-
- Python与C++:哪个编程语言更适合初学者?
- 2024-03-25 501浏览
-
- 品牌建设技巧
- 2024-04-06 501浏览

