Skip to content

Workbench

  • Hot ideas
  • Top ideas
  • New ideas
  • My feedback

713 results found

  1. 1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  General  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  2. Electronics

    Supplies, cor agents cat ina 5678945678975432 or orifices are you can use a student or orifices to

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Data Prep  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  3. 1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Jupyter - Python  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  4. tensorflow update

    Please update tensorflow to v2.1 or v2.0

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Jupyter - Python  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  5. Loops Why?

    There is almost no explanation why the code for the loops (for, while) is as it is. I didnt understand from the explanation how to put together a code that works

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  General  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  6. Need live chat, support for Lab sessions. I have subscribed "Data analysis with python"", but unable to start Lab. a week gone after subscri

    Need live chat, support for Lab sessions. I have subscribed "Data analysis with python"", but unable to start Lab. a week gone after subscribing. No use. feeling worst

    5 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  7. 1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  8. sas

    an online platform for sas training and workout to have feel of sas software

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  General  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  9. Please - update the notebook. Lab SVM

    Please - update the notebook.

    The sklearn.crossvalidation was deprecated, please use sklearn.modelselection

    thanks!

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  10. 1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  11. Change 'concentrate' to 'concatenate'

    In the final question on functions, you say 'concentrate' when you intend 'concatenate'.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Jupyter - Python  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  12. inelegant sample code

    In box [13] you define a Rating variable that you don't need. A simpler solution is

    PlayListRatings = [10, 9.5, 10, 8, 7.5, 5, 10, 10]
    i = 0
    while PlayListRatings[i] >= 6:
    print(PlayListRatings[i])
    i = i + 1
    if(i > 1000):
    break

    Note this example includes a safety mechanism that avoids infinite looping. I would never teach the while loop without warning students about the dangers of infinite looping. . . .

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Jupyter - Python  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  13. Vague question about range function

    The question says, 'Write a for loop the prints out all the element between -5 and 5 using the range function.' You should specify whether the between includes or excludes the lower and upper bounds. English does not have separate words for each of the four possible cases, so using one word for all four cases creates ambiguity that leads to four possible correct answers.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Jupyter - Python  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  14. correct the description of the range() function and type

    The instruction refers to the "range object." Why not just say (more precisely) that the range type amounts to an (ordered) sequence of integers, and the range() function generates such sequences? This is computer programming. We can be fully exact from the git go. We don't have to gloss or approximate these little truths for the sake of simplification or summarization.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Jupyter - Python  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  15. correct example for if statement with compound condition

    The question asks to print the year the album came out. The sample code prints 'This album came out already'. You should make them consistent.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Jupyter - Python  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  16. correct information about how string comparison works

    Your instructional text says string comparison is according to ASCII collation order. The Python 3 documentation says, "Strings (instances of str) compare lexicographically using the numerical Unicode code points (the result of the built-in function ord()) of their characters." So your statement is only true for ASCII characters. Why not tell the whole truth?

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Jupyter - Python  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  17. avoid using reserved words as variable names

    The sample code creates the variable 'intersection' as a token representing the result of an intersection operation. Inasmuch as the same term is the name of a method defined by the language, it's bad form to use the reserved term as a variable name. I suggest you change it to e.g. 'my_intersection'.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Jupyter - Python  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  18. Add instruction for index() function before the quiz on tuples asks the learner to demonstrate its use.

    Add instruction for index() function before the quiz on tuples asks the learner to demonstrate its use.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Jupyter - Python  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  19. server connections failed in jupyterlab

    server connections failed in jupyterlab

    24 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  20. Swift ile uygulama geliştirme

    Swift ile uygulama geliştirme özelliği getirebilir misiniz.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  General  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  • Don't see your idea?

Feedback and Knowledge Base