np-complete 相关问题


Spring MVC - 为什么我在 GET 请求中需要模型对象?

看一下 Spring 提供的用于处理表单提交的示例: https://github.com/spring-guides/gs-handling-form-submission/tree/main/complete 这是 Spring MVC 控件的基本示例...


pandas 替换空字符串

替换列中的字符串时,会在每个字符周围添加替换字符串。 将 pandas 导入为 pd,将 numpy 导入为 np 将 pandas 导入为 pd,将 numpy 导入为 np data1 = [['符号','上下文'], ...


使用部分进行主动拆解/重新渲染不会重新渲染部分

这是小提琴(对警报感到抱歉)http://jsfiddle.net/PCcqJ/92/ var ractive = new Ractive({ 模板:'#templateOne', 部分:{ aPartial:'哦,看,partia... 这是小提琴(抱歉有警报)http://jsfiddle.net/PCcqJ/92/ var ractive = new Ractive({ template: '#templateOne', partials: { aPartial: '<div>Oh look, the partial is rendered!</div>' } }); function cb() { alert('but now we unrender'); ractive.once('complete', function() { alert('we rendered again, and now you can\'t see the partial content'); }); ractive.render('container'); } ractive.render('container'); ractive.once('complete', function() { alert('so we render the first time, and you can see the partial'); ractive.unrender().then(cb); }); 此处的部分不会重新渲染。为什么是这样?部分仍在部分对象中,并且它们尚未渲染,那么什么会阻止它们再次渲染? 这个小提琴会渲染、取消渲染,然后重新渲染,每次发生其中一种情况时都会向您发出警报。 我做了一个工作jsfiddle:https://jsfiddle.net/43gLqbku/1/ <div id='container'></div> <script id="templateOne" type="x-template"> {{>aPartial}} </script> var ractive = new Ractive({ el:"#container", template: '#templateOne', partials: { aPartial: '<div>Oh look, the partial is rendered!</div>' } }); function cb() { alert('but now we unrender'); ractive.once('complete', function() { alert('we rendered again, and now you can\'t see the partial content'); }); ractive.render('container'); } //ractive.partials.part = '<div>this is a partial</div>'; ractive.once('complete', function() { alert('so we render the first time, and you can see the partial'); ractive.unrender().then(cb); }); 在调用render之前需要调用ractive.once('completed') 你不需要 ractive.render("container");在活动代码下,因为它在第一次运行时自动呈现 在你的jsfiddle中你导入的ractive不起作用 你没有在 jsFiddle 活动代码中包含 el:"#container"


为什么 LightGBM 中 R2 分数为零?

将 numpy 导入为 np 将 pandas 导入为 pd 导入lightgbm 从 sklearn.metrics 导入 r2_score,mean_squared_error 作为 MSE 数据集 = pd.read_excel("Prali Marble.xlsx") X = dataset.iloc[:,2].va...


Pandas - 使用可变长度滚动窗口聚合值

以下数据框用作输入: 将 pandas 导入为 pd 将 numpy 导入为 np json_string = '{"日期时间":{"0":1528955662000,"1":1528959255000,"2":


scipy.optimize.curve_fit 不合适

数据集的 scipy.optimize.curve_fit 拟合不够好,从前两个峰值和第三个峰值之间可以看出。 我的代码如下 将 numpy 导入为 np 导入


我想自动调整文本大小

导入 matplotlib.pyplot 作为 plt 将 numpy 导入为 np 将 tkinter 导入为 tk 从 tkinter 导入 * 根 = tk.Tk() root.config(bg='白色') root.state('缩放') x = np.arange(-10, 11, 1) root.title('


我应该检测选定的输入框

导入 matplotlib.pyplot 作为 plt 将 numpy 导入为 np 将 tkinter 导入为 tk 从 tkinter 导入 * 根 = tk.Tk() root.config(bg='白色') root.state('缩放') x = np.arange(-10, 11, 1) root.title('


将我的代码打包到类中时遇到一些问题

我的代码: 从 scipy.optimize 导入最小化 将 numpy 导入为 np 最小二乘类: def __init__(自身): self.d = 2 #decision_demension self.parameter_sets = np.ones(...


关于Numpy

我一直在研究Python中的numpy库。 我用了代码 将 numpy 导入为 np arr=np.array([(11,12,13),(17,18,19)]) 尺寸 它的输出是 6 没错,但是 当我跑步时 导入 numpy a...


pandas 重新索引多重索引无法正常工作

我有一个 pandas(版本 1.0.5)DataFrame,具有两个级别的 MultiIndex,例如喜欢: mi = pd.MultiIndex.from_product((('a', 'c'), (5, 12))) np.随机.种子(123) df = pd.DataFrame(data=np.random.ran...


Numpy 中“size”和“itemsize”的区别

我一直在研究Python中的numpy库。 我用了代码 将 numpy 导入为 np arr=np.array([(11,12,13),(17,18,19)]) 尺寸 它的输出是 6 没错,但是 当我跑步时 导入 numpy a...


获取每个组值的列表列表,而无需在 pandas 中旋转表格

我有以下数据框: 将 numpy 导入为 np 将 pandas 导入为 pd 数据 = np.random.uniform(0, 1, (4, 5)) df = pd.DataFrame(数据, 列 = [2010,2011,2012,2013,2014]) df = df.stack().reset_ind...


在长 Numpy 数组前面添加零

我有一个很长的一维数组,我想计算它的累积和,然后在结果数组的开头添加一个零。 将 numpy 导入为 np def padded_cumsum(x): 暨_总...


使用networkx和numpy模拟马尔可夫链

我的目标是使用networkx和numpy模拟马尔可夫链。我写了下面的代码 将 numpy 导入为 np 将networkx导入为nx 状态 = [ '距离', '罢工', '昏死' ]


使用 Yfinance 获取市值数据

我试图使用 yfinance 获取股票的市值数据。这是我的代码: 将 yfinance 导入为 yf 将 numpy 导入为 np 从 pandas_datareader 导入数据 将 pandas 导入为 pd 导入 pandas_dataread...


“没有名为‘lab_utils_common’的模块”

我试图运行下面的这个程序,但它显示错误“没有名为‘lab_utils_common’的模块”,我该怎么做才能解决这个问题? 将 numpy 导入为 np 将 matplotlib.pyplot 导入为...


python - numpy FileNotFoundError:[Errno 2]没有这样的文件或目录[重复]

我有这个代码: 导入操作系统路径 将 numpy 导入为 np homedir=os.path.expanduser("~") pathset=os.path.join(homedir,"\Documents\学校生活日记\settings.npy") 如果不是(os.path.exists(路径集)): d...


matplotlib 散点图图例不依赖于点的颜色

我想让散点图的图例不依赖于点的颜色。简单的例子如下: 将 matplotlib.pyplot 导入为 plt 将 numpy 导入为 np 将 pandas 导入为 pd 假数据...


在 Matplotlib 中标记步骤图

下面是一个代码,其中绘制了正弦波并在其顶部添加了阶跃波: 将 numpy 导入为 np 将 matplotlib.pyplot 导入为 plt # 正弦波参数 A = 5 # 增加幅度 f = 1 # 弗...


在 numpy 数组中前向填充 NaN 值的最有效方法

示例问题 作为一个简单的例子,考虑 numpy 数组 arr 的定义如下: 将 numpy 导入为 np arr = np.array([[5, np.nan, np.nan, 7, 2], [3, np.nan, 1, 8, np.nan], ...


合并索引上的两个数据帧,去掉 key_0

我想通过索引列合并两个数据帧。我的代码是: 将 pandas 导入为 pd 将 numpy 导入为 np df1 = pd.DataFrame({'a': ['红色', '红色', '红色']}) df2 = pd.DataFrame({'b': [1, 2, 2]}) df = ...


我无法使用opencv从RTSP视频中获取5秒后的视频流

导入cv2 将 numpy 导入为 np 导入数学 导入操作系统 从设置导入配置,load_model 导入日期时间 os.environ['OPENCV_FFMPEG_CAPTURE_OPTIONS'] = 'rtsp_transport;udp' 视频名称=“rtsp://


无法解决 KeyError:“索引 'slice(None, None, None)' 对于索引组件 'MindtPy_utils.objective_value' 无效”

将 pandas 导入为 pd 将随机导入为 r 将 numpy 导入为 np 导入glpk 从 pyomo.environ 导入 * 从amplpy导入AMPL def pyblock(pyp,pytau,pyr,pys): M = 具体模型() MM = ...


使用 Rich 计算球谐系数的 Python 嵌套进度条

我有一组用于球谐系数的嵌套 for 循环,我想使用 Rich 来显示嵌套组件的进度。 将 numpy 导入为 np 从时间导入睡眠 l = 32 为了我...


ValueError:无法将字符串转换为浮点数:'RL'

我正在尝试从 csv 数据绘制热图,但这是我得到的值错误 将 numpy 导入为 np 将 pandas 导入为 pd 将 matplotlib.pyplot 导入为 plt 将seaborn导入为sns 我上传...


如何在绘图中制作包含两个连续条形的直方图?

我有以下代码: 将 pandas 导入为 pd 将 numpy 导入为 np 将 matplotlib.pyplot 导入为 plt # 示例数据(将其替换为您的实际 DataFrame) 数据 = { ‘CU’: [1.5, 2.3, 1.8, 3.2, 2....


使用 Z - Score 方法删除 pandas 数据框中具有异常值的行

我正在使用此代码来删除异常值。 将 pandas 导入为 pd 将 numpy 导入为 np 从 scipy 导入统计数据 df = pd.DataFrame(np.random.randn(100, 3)) df[np.abs(stats.zscore(df[0])) < 1.5] This wo...


列表理解而不是在for循环中使用append

我想使用列表理解而不是使用追加方法,因为它使代码运行得更快,但是当它是 numpy 数组时它不起作用。 将 numpy 导入为 np a = np.array([1, 2, 4]) 乙...


向下转换浮点数时如何解释 numpy.ndarray.item() 返回的值

我使用空间数据,并且经常拥有最多只需要精确到小数点后几位的坐标,例如89.995。 一个简单的例子: 将 numpy 导入为 np arr = np.array([89.995]) 检验...


为什么当保存为 .svg 而不是 .png 时,图中会出现不需要的线条

导入 matplotlib.pyplot 作为 plt 将 pandas 导入为 pd 将 numpy 导入为 np 导入操作系统 从 matplotlib.ticker 导入 FuncFormatter # 假设数据集已经定义 数据集2 = #redacted # 设置


Matplotlib.pyplot 具有 numpy 输入不同值的散点图为每个值创建单独的点

通常,x 和 y 输入值会合并为一个坐标点。 使用列表,就可以了: 将 matplotlib.pyplot 导入为 plt 将 numpy 导入为 np a = [5,6] plt.scatter(a[0],a[1]) plt.show() # 显示一个...


使用 pyenv 的 Visual Studio 代码中没有适用于 Mac OS 的名为“numpy”的模块

我的 numpy 有问题。 当我尝试在 Visual Studio 中运行 main.py 文件时,我收到此消息。 将 numpy 导入为 np ModuleNotFoundError:没有名为“numpy”的模块 错误 conda.cli.main_run:执行(33):


尝试使用体素方法将球体缺陷 (.ply) 插入到对象 (.obj) 中,使用 open3d 绕过空域和顶点。请帮忙:)

get_voxel_center() 在下面的代码中不起作用: 将 open3d 导入为 o3d 将 numpy 导入为 np def main(): # try.obj 和 sphere.ply 文件的文件路径 try_obj_path = '/Users/xd_anshul/De...


在 Python 中将命名函数参数输入为命名列表[重复]

我正在寻找一种方法将命名函数参数作为一个命名列表输入,而不是在使用函数时单独指定它们。 假设我有这个: 将 numpy 导入为 np 类东西...


Remix V2 useLoaderData 在开发模式下运行时出现问题

在基本的 Remix V2 应用程序中,我需要帮助了解以下行为是否是预期行为、V2 中的错误,或者可能缺少配置选项或设置。 当通过 np 在开发模式下运行时...


Google Collab Python 名称错误:在尝试推荐系统的无监督学习时未定义“形状”

我在尝试推荐系统、无监督学习时在colab中写了这篇文章 将张量流导入为 tf 将 numpy 导入为 np 导入keras 从 keras 导入顺序 从 keras.layers 导入密集 夫...


引导进度条没有进度

引导进度条在我的 MVC 索引视图上不起作用。 我已经用 Chrome 和 Internet Explorer 尝试过了。 @{ ViewBag.Title = "首页"; } 引导进度条在我的 MVC 索引视图上不起作用。 我已经用 Chrome 和 Internet Explorer 尝试过了。 @{ ViewBag.Title = "Home Page"; } <div class="jumbotron"> <h1>ASP.NET</h1> <p class="lead">ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.</p> <p><a href="http://asp.net" class="btn btn-primary btn-large">Learn more &raquo;</a></p> </div> <div class="row"> <div class="col-md-4"> <h2>Getting started</h2> <div class="progress-bar progress-striped "></div> </div> </div> 本次聚会迟到了,但在我使用的 Bootstrap 版本(v3.1.1)中,该类是“progress-striped”(不是像文档所说的“progress-bar-striped”),并且它和“active” ' 类必须应用于外部 div: <div class="progress progress-striped active"> <div class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">Some text</div> </div> 查看 CSS,选择器“progress-bar”已更改为“bar”: ./bootstrap.css: .progress { ... } .progress .bar { ... } 因此,将您的代码更改为 <div class="progress"> <div class="bar"> </div> </div> 然后就可以了。 不确定这种疯狂的原因是什么,似乎引导文档还没有更新。 <div class="progress"> <div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%"></div> </div> 这样进度动画就可以工作了。 <div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;"> <span class="sr-only">60% Complete</span> </div> </div> 上面是 bootstrap v3.1.1 的代码,看起来你的进度条 div 缺少一些元素? 如果您使用 Bootstrap v4 并且需要动画,则需要使用 progress-bar-animated 而不是 active。


在 Rails 5 中单击浏览器上的后退按钮时,带有 Select2 的表单会重复

_header.html.erb(用于表单部分) <%= form_for home_path, class: 'home', role: 'search', method: :get do |f| %> _header.html.erb(用于表单部分) <%= form_for home_path, class: 'home', role: 'search', method: :get do |f| %> <div class="form-group" style="display:inline;"> <div class="input-group input-group-md"> <%= text_field_tag :q, params[:q], placeholder: ... ,class: 'form-control hideOverflow', type: "search" %> <%= select_tag "category", options_from_collection_for_select(...),include_blank: true, class: 'form-control hideOverflow', type: "search" %> <%if logged_in? %> <%= select_tag "location", options_for_select([...], ...),class: 'form-control hideOverflow', type: "search" %> <% else %> <%= select_tag "location", options_for_select([...], ...),class: 'form-control hideOverflow', include_blank: true, type: "search" %> <% end %> <span class="input-group-addon"><%= submit_tag "Search", class: "btn-transparent"%></span> </div> </div> <% end %> JS代码 <script> $( document ).on('turbolinks:load', function() { $('select#category').select2({ width: '60%', dropdownAutoWidth : true, placeholder: "Choose a category", maximumSelectionLength: 3 }); $('select#location').select2({ width: '40%', dropdownAutoWidth : true, minimumResultsForSearch: Infinity }); }); </script> 故障或渲染问题(单击链接查看图像) 有人可以帮我解决为什么吗?另外,我的搜索表单位于标题部分文件的导航栏中。 如果我去掉脚本中的 $(...).select ,一切都会正常...我认为 select.js 有问题 在此回复: https://stackoverflow.com/a/41915129/5758027 我在自己的代码中使用了这个解决方案: $(document).on('turbolinks:before-cache', function() { // this approach corrects the select 2 to be duplicated when clicking the back button. $('.select-select2').select2('destroy'); $('.select-search-select2').select2('destroy'); } ); 和观察者: $(document).ready( ready ); //... once document ready $(document).ajaxComplete( ready ); //... once ajax is complete $(document).on('turbolinks:load', ready ); //... once a link is clicked function ready() { $(".select-search-select2").select2({ theme: "bootstrap", language: 'es', allowClear: true }); $(".select-select2").select2({ theme: "bootstrap", language: 'es', minimumResultsForSearch: Infinity, allowClear: true }); }; 总是清除缓存不是会让使用 Turbolink 变得毫无意义吗? 不如这样? $(document).on('turbolinks:before-cache', function(e) { return $('.form-control.select2').each(function() { return $(this).select2('destroy'); }); }); 我无法解决这个渲染问题(仍在等待正确的答案!),但如果有人像我一样遇到类似的问题,请尝试跳出框框思考。这是我的技巧:我在应用程序中添加了一个后退按钮。 获取完整的url路径 # get the previous url def save_previous_page session[:return_to] = request.fullpath end 仅当页面不是主页或搜索页面时才显示后退按钮 <% if session[:return_to] != request.fullpath%> <%= link_to session.delete(:return_to) || request.fullpath, class: 'back-button' do%> <i class="fa fa-arrow-circle-left" aria-hidden="true"></i> <%end%> <% end %> 同时,我仍在等待并尝试解决渲染问题... 解决了问题 只需将此代码添加到您的 .js 文件中 Turbolinks.clearCache(); 这很可能是一些资源不一致,您应该检查您的 app\views\layouts 文件夹中是否有重复声明 wither jQuery、jQuery UJS 或 Turbolinks 的文件。检查页面的所有 <script> 标签,以及是否在 layout 文件夹和内部视图中声明相同的脚本。如果情况并非如此,请检查是否有 render、yield 或 build 呼叫 简单的解决方案,不要在您不希望它运行的东西上运行 select2 构建器。 $("select#category:not(.select2-container):not(.select2-hidden-accessible)").select2(); Rails 7 更新 这里的很多东西在 Rails 7 中都不起作用,尤其是 turbolinks:before-cache 事件。您正在寻找的新事件是 turbo:before-cache 和 turbo:load,所以它看起来像这样: $(document).on("turbo:before-cache", function() { $("#select_id").select2('destroy'); }); $(document).on('turbo:load', function() { $('#select_id').select2(); });


css:溢出滚动添加额外的填充

我有以下html和css代码: html,正文{ 保证金:0; } #包含...</desc> <question vote="0"> <p>我有以下 html 和 css 代码:</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;style type=&#34;text/css&#34;&gt; html, body { margin: 0; } #container{ width:100vw; height:100vh; background-color: green; } #left-bar{ position: absolute; width: 300px; height: 100vh; background-color: red; overflow: scroll; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id=&#34;container&#34;&gt; &lt;div id=&#34;left-bar&#34; &gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>它给出: <a href="https://i.sstatic.net/sbXnw.png" rel="nofollow noreferrer"><img src="https://cdn.txt58.com/i/AWkuc3N0YXRpYy5uZXQvc2JYbncucG5n" alt="extra padding overflow scroll"/></a></p> <p>左侧栏内有一个填充,我不明白为什么以及如何删除它。</p> <p>我尝试过的事情:</p> <ul> <li>在左侧栏上添加<pre><code>padding: 0;</code></pre>,它不起作用(也可以使用<pre><code>!important</code></pre>)。</li> <li>使用检查器来了解填充的来源。我没找到。</li> <li>删除左侧栏上的<pre><code>overflow: scroll</code></pre>。它有效,但我希望左栏具有以下行为 <pre><code>overflow: scroll</code></pre></li> </ul> <p><strong>如何删除左栏中的填充?</strong></p> <p><strong>编辑:错误用完全相同的代码消失了。</strong></p> <p>现在使用相同的代码: <a href="https://i.sstatic.net/Ch1IF.png" rel="nofollow noreferrer"><img src="https://cdn.txt58.com/i/AWkuc3N0YXRpYy5uZXQvQ2gxSUYucG5n" alt="no padding"/></a></p> <p>我做了什么:</p> <ul> <li>重启电脑,bug依然存在</li> <li>添加CSS代码来设置滚动条的样式</li> <li>删除我添加的代码 --> bug 消失了</li> </ul> <p>我不明白为什么...</p> </question> <answer tick="false" vote="0"> <p>您看到的是一个空的滚动条。设置溢出<pre><code>overflow: auto</code></pre>。仅当内容溢出时才会显示滚动条。</p> <p></p><div data-babel="false" data-lang="js" data-hide="false" data-console="true"> <div> <pre><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;style type=&#34;text/css&#34;&gt; html, body { margin: 0; } #container{ width:100vw; height:100vh; background-color: green; } #left-bar{ position: absolute; width: 300px; height: 100vh; background-color: red; overflow: auto; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id=&#34;container&#34;&gt; &lt;div id=&#34;left-bar&#34; &gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt;</code></pre> </div> </div> <p></p> </answer> <answer tick="false" vote="0"> <p>您可能会考虑使用一个具有最小滚动条的插件(也许是<a href="https://grsmto.github.io/simplebar/" rel="nofollow noreferrer">simplerbar</a>)。还可以考虑只做 <pre><code>overflow-y:scroll</code></pre> 以获得更容易接受的外观。您还可以更改滚动装订线的颜色<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-color" rel="nofollow noreferrer">colors</a></p> <p></p><div data-babel="false" data-lang="js" data-hide="false" data-console="true"> <div> <pre><code>var el1 = document.querySelector(&#39;[data-id=div1]&#39;); var el2 = document.querySelector(&#39;[data-id=div2]&#39;); instance1 = new SimpleBar(el1); instance2 = new SimpleBar(el2);</code></pre> <pre><code>&lt;script src=&#34;https://cdnjs.cloudflare.com/ajax/libs/simplebar/5.3.8/simplebar.min.js&#34; integrity=&#34;sha512-2SAzoBQi2FbvWkvcsoYW4PH478pUu0gwa7BRA6YQxg6kCWUIOIDfFHMLH57GbWeLa+pkYitOD5j9mIhIt3CLKA==&#34; crossorigin=&#34;anonymous&#34; referrerpolicy=&#34;no-referrer&#34;&gt;&lt;/script&gt; &lt;link rel=&#34;stylesheet&#34; href=&#34;https://cdnjs.cloudflare.com/ajax/libs/simplebar/5.3.8/simplebar.min.css&#34; integrity=&#34;sha512-uZTwaYYhJLFXaXYm1jdNiH6JZ1wLCTVnarJza7iZ1OKQmvi6prtk85NMvicoSobylP5K4FCdGEc4vk1AYT8b9Q==&#34; crossorigin=&#34;anonymous&#34; referrerpolicy=&#34;no-referrer&#34; /&gt; &lt;div dir=&#34;ltr&#34;&gt; &lt;div data-id=&#34;div1&#34; style=&#34;height: 300px; width: 200px; padding:10px; display: inline-block; border:1px solid gray; background: lightblue; &#34;&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.&lt;/p&gt; &lt;/div&gt; &lt;section data-id=&#34;div2&#34; style=&#34;height: 300px; width: 200px; padding:10px; display: inline-block; border:1px solid gray&#34;&gt; &lt;p&gt;Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?&lt;/p&gt; &lt;p&gt;But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?&lt;/p&gt; &lt;/section&gt; &lt;/div&gt;</code></pre> </div> </div> <p></p> </answer> </body></html>


© www.soinside.com 2019 - 2024. All rights reserved.