Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 19,673
» Latest member: techthiru
» Forum threads: 38,647
» Forum posts: 175,057
Full Statistics
|
Online Users |
There are currently 405 online users. » 2 Member(s) | 399 Guest(s) Bing, Yandex, Baidu, Google, snippsat, techthiru
|
|
|
version 2 to 3 changes |
Posted by: Skaperen - Oct-17-2017, 02:28 AM - Forum: News and Discussions
- Replies (4)
|
 |
as we all know, version 3 changed the print statement to a built in print() function. i am curious why and also curious why not other statements.
|
|
|
Error with conditionals |
Posted by: RiceGum - Oct-17-2017, 12:37 AM - Forum: Homework
- Replies (17)
|
 |
mes = input()
if mes in ("Abril", "Junho", "Setembro", "Novembro"):
print("30 dias")
elif mes in ("Janeiro", "Março", "Abril", "Maio", "Julho..... More
|
|
|
lcm |
Posted by: mp3909 - Oct-16-2017, 08:37 PM - Forum: General Coding Help
- Replies (2)
|
 |
[python]def lcm(m,n):
answer = 0
if m>n:
for i in range(m,m*n+1,m):
if i%n==0:
answer==i
break
return answer
>>> lcm(5,3)
0..... More
|
|
|
database connectivity |
Posted by: achhayya - Oct-16-2017, 02:37 PM - Forum: Homework
- Replies (1)
|
 |
Hello
I have installed the module psycopg2(pp psycopg2)
My program is having only one below statement
import psycopg2
When i try to execut..... More
|
|
|
Having issues with a lab |
Posted by: Thompscr01 - Oct-16-2017, 02:21 PM - Forum: Homework
- No Replies
|
 |
Question: I am currently having an issue with a lab in my class and am looking for help setting up my program. The professor asked us to make it "idio..... More
|
|
|
I'm a beginner |
Posted by: michaelshopfer - Oct-16-2017, 02:37 AM - Forum: Bar
- Replies (10)
|
 |
Hello, I want to know where I can learn to program some simple programming language (I'm a beginner) if you can help me, thank you.
|
|
|
Argument lists |
Posted by: sobrio1 - Oct-15-2017, 09:52 PM - Forum: Data Science
- Replies (7)
|
 |
Does anyone know how to get an argument list for a function besides using shift+tab?
I can't use my_dataframe.loc() properly because I have no idea..... More
|
|
|
|